the max open files in linux system [message #98640] |
Tue, 05 February 2002 02:29 |
christan
Messages: 2 Registered: February 2002
|
Junior Member |
|
|
the max open files in linux system?
why the followed error occured?
ora-00321:log 4 of thread 1,cannot update log file header
ora-00321:online log 4 thread 1:'home/oracle/app/log8yys6.log'
ora-27041:unalble to open file
Linux Error:23:Too many open files in system?
|
|
|
Re: the max open files in linux system [message #98641 is a reply to message #98640] |
Tue, 05 February 2002 02:58 |
Frank Naude
Messages: 4587 Registered: April 1998
|
Senior Member |
|
|
Hi,
Unix Error 2 (ENFILE) = File table overflow
The system file table is full, and no files can be opened.
You need to increase the max number of open files for your Linux kernel. See section 8.14 of the Linux Kernel-HOWTO.
echo 4096 > /proc/sys/kernel/file-max
echo 12288 > /proc/sys/kernel/inode-max
Best regards.
Frank Naude
|
|
|