Common Errors When Starting Server

From Vital Soft Wiki
Revision as of 17:43, 5 June 2023 by Johno (talk | contribs) (Created page with "=== Errors When Starting Server === == VsrvTcp Listener service not started on the host == This error message is usually following by a second message that includes more det...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Errors When Starting Server

VsrvTcp Listener service not started on the host

This error message is usually following by a second message that includes more details about why the connection failed.

Possible causes:

  • The VsrvTcp listener is not running.
    • To verify, run the following command on the server:
grep vsrvtcp
 root     1436088       1  0 09:30 pts/0    00:00:00 ./vsrvtcp -a
 root     1436089 1436088  0 09:30 pts/0    00:00:00 ./vsrvtcp -a
  • Invalid IP address.
  • Invalid port number.
    • To verify the default port used by VsrvTcp, issue the following command on the server:

{{{

 $grep askplus /etc/services
 askplus        29500/tcp    # vsrvTCP listener

}}}

    • The port can also be specified when starting VsrvTcp using the -n parm

{{{

 /ASKPLUS/vsrvtcp -a -n29500

}}}