Concurrent client connections to EAServer are limited by the operating system limit for the number of file descriptors that can be opened in one process.
Workaround: Before you start the server, set the file descriptor limit in the shell where you plan to start the server. For example, to set the limit to 1024:
Using a text editor, open the bin/serverstart.sh file.
Below the first comment block, add this line:
ulimit -n 1024
See your UNIX documentation for more details on the ulimit command.
Copyright © 2005. Sybase Inc. All rights reserved. |
![]() |