Re: Too many open files

2005-02-22 Thread Rikard Froberg
Joseph Shraibman wrote: When I get this Exception, this is an operating system limit, not a jvm limit, right? java.io.FileNotFoundException: /local/java/classes/com/xtenit/util/Misc$1.class (Too many open files) Yes. You can read more about it here http://forum.java.sun.com/thread.jspa?threadID

Too many open files

2005-02-18 Thread Joseph Shraibman
When I get this Exception, this is an operating system limit, not a jvm limit, right? java.io.FileNotFoundException: /local/java/classes/com/xtenit/util/Misc$1.class (Too many open files) -- To UNSUBSCRIBE, email to [EMAIL

Error : Too many open files

1999-07-25 Thread Vijaykumar Krishnaswamy
Hi, Hi I have an application, where it is absolutely necessary to open multiple sockets, in the tune of 50's.But the system does not allow me to do this and infact throws a socketexception with the error message as "Too many open files". AFAIK, the OS allows(sol

Re: Too many open files in system

1999-04-22 Thread Jaco de Groot
like "Too many open files in system" to. > UNIX (Linux included) allows you to set a max number of file descriptors > that a given process can have open. The command controlling this > depends on the shell you're using. For instance, under Linux tcsh, it > is "

Re: Too many open files in system

1999-04-20 Thread Nate Sammons
UNIX (Linux included) allows you to set a max number of file descriptors that a given process can have open. The command controlling this depends on the shell you're using. For instance, under Linux tcsh, it is "limit" and under bash (/bin/sh) it is "ulimit" I think the default is 256 -- you c

Re: Too many open files in system

1999-04-20 Thread ChangYoon
Jaco de Groot wrote: > > Manage a socket number? I don't understand. > It means if your server program(in JAVA) creates socket from client, your program must close socket. Of course, Garbage Collection will close socket. But the time may be over socket numbers(file-descripter numbers) that y

Re: Too many open files in system

1999-04-19 Thread Jaco de Groot
> > Too many open files in system > > > > When this happens, other programs (even programs of other > > users) can't open files anymore. I couldn't find messages > > like this in the bug reports or mail archive. I've tried > > to write a progr

Re: Too many open files in system

1999-04-19 Thread 조창윤
Jaco de Groot wrote: > > Too many open files in system > > When this happens, other programs (even programs of other > users) can't open files anymore. I couldn't find messages > like this in the bug reports or mail archive. I've tried > to write

Too many open files in system

1999-04-19 Thread Jaco de Groot
Hi, I'm using jdk1.2 pre-v1 on RedHat 5.2 for my servlets using Apache JServ. Every once in a while I get the following error: Too many open files in system When this happens, other programs (even programs of other users) can't open files anymore. I couldn't find messages l