Troubleshooting socket errors

TCP/IP socket errors have the following mnemonics:

where error is the text for the socket error: Connection reset by peer (10054 or 54) or Connection refused (10061 or 61).

To view socket errors, use Vortex API logging or %SSC_GETEMSG. On Unix systems, see /usr/include/errno.h. On Windows systems, you can find these errors in winsock.h or winsock2.h, which are typically distributed with Microsoft’s Platform Software Development Kit (SDK). For details on Microsoft error codes, see Microsoft documentation.

Connection reset by peer (10054 or 54)

The “Connection reset by peer” socket error, which is 10054 (WSAECONNRESET) on Windows and generally 54 (ECONNRESET) on Unix and OpenVMS, indicates that a connection to the server has been closed. This could be caused by a fatal error on the server, the server stopping, a network problem, or even a connection problem.

1. If the error has the form “connect:errorno:error”, use vtxping (or synxfpng with the -x option) to test your ability to connect to the server. Otherwise, skip to step 2. The vtxping and synxfpng utilities print reports to the screen. This information can be used by your network administrator to resolve TCP/IP network socket communication problems.

For more information see vtxping utility and synxfpng utility.

2. Check and correct the following, which may solve the problem if it is caused by network timing issues:
3. If you’re on Windows or Unix, run the dltest utility to make sure Connectivity Series DLLs or shared libraries are loading properly.
4. Make sure the connect string in the client application is referencing a valid driver and database.
5. If you get this socket error again, use vtxnetd or vtxnet2 logging and check the event log on Windows, syslog on Unix, or the operator console on OpenVMS.

For additional troubleshooting steps for prior versions of Connectivity Series, see Synergex KnowledgeBase article 1607.

Connection refused (10061 or 61)

The “Connection refused” socket error, which is 10061 (WSAECONNREFUSED) on Windows and is generally 61 (ECONNREFUSED) on Unix and OpenVMS, indicates that the SQL Connection program can’t make a connection to the SQL OpenNet server. The SQL OpenNet server may not be running, it may not use the port that’s specified for the client (see Port settings), or the host specified in the connect string may be incorrect.

1. Use vtxping (or synxfpng with the -x option) to test your ability to connect to the server. (For more information see vtxping utility and synxfpng utility.)

The vtxping and synxfpng utilities print reports to the screen. This information can be used by your network administrator to resolve TCP/IP network socket communication problems.

2. Make sure the port number specified in the connect string matches the port number used by the SQL OpenNet server. For more information, see Configuring Connectivity Series and Port settings.
Note

On Unix, if you find that the SQL OpenNet server is running and the port is correct, it may be the case that the server is terminating when the user that started it logs out. To run the server in the background and keep it running after you log out, use the nohup command. For example:

nohup vtxnetd -p1958 &

For more information, see Starting SQL OpenNet for SQL Connection.