RE: [JBoss-dev] too many open files on Linux

2003-10-22 Thread Laurent Etiemble
Hi, You can try the ulimit command. Laurent. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Bill Burke Sent: mercredi 22 octobre 2003 01:58 To: Jboss-Dev Cc: [EMAIL PROTECTED] Subject: [JBoss-dev] too many open files on Linux I'm on RH 8.0. I'm getting

Re: [JBoss-dev] too many open files on Linux

2003-10-22 Thread Scott M Stark
That is not going to help as that is the max for all users. It should be the user limits that are restricting this, my default is: [EMAIL PROTECTED] tmp]$ ulimit -a core file size(blocks, -c) 0 data seg size (kbytes, -d) unlimited file size (blocks, -f) unlimited max

RE: [JBoss-dev] too many open files on Linux

2003-10-22 Thread Sacha Labourey
Use ulimit -n, AND MAKE SURE that it is set globally (for all shells) OR put it in the run.sh file otherwise the risk is that: - you set it in your current shell - you launch run.sh - run.sh overrides your ulimit value (see run.sh file) Cheers, Sacha -Original