Subject | Re: [Firebird-Java] Unable to complete network request |
---|---|
Author | K. Kumakura |
Post date | 2005-09-28T02:05:39Z |
> Please check your network settings. Can it be that you limited the number ofThe max number of fd's on the system:
> sockets that can be opened to the server?
$ cat /proc/sys/fs/file-max
$ 209536
The max number of fd's per process:
$ ulimit -n
$ 1024
One of our JBoss applications has 25 databases. Assuming that
5 connections for each database were establshed, the number of
fd's required is 5 * 25 = 125, which is much less than 1024.
Though I don't know how many fd's Firebird SS requires per database,
I guess that 1024 is large enough for this JBoss application.
Regards,
K Kumakura