Re: Linux error message

2000-09-28 Thread Alexander V. Konstantinou
I'm gussing that you're opening files in your application and forgetting to close them using InputStream.close(). It could also happen if you open network connections and forget to close them. The other alternative is that you're writting a massing DB or Network server, in which case you need to

Re: [Linux error message]

2000-09-28 Thread Reghunath P D
The problem is arising with the value assigned for maximum opened file handles. You can set a new value by echoing a new value to the file /proc/sys/fs/file-max eg: $echo 8176 > /proc/sys/fs/file-max Please try it... [EMAIL PROTECTED] ___