While installing a Oracle 11G release 2 database on Ubuntu Linux I encountered the following error:
OS Kernel Parameter: file-max
This is a prerequisite condition to test whether the OS kernel parameter "file-max" is properly set.
Expected Value
: 6815744
Actual Value
: 198903
Stating that the file-max kernel setting should read 6815744. The solution to this is to edit the file /etc/sysctl.conf and add the (or change a existing line to) line to the following:
fs.file-max = 6815744
After you have done so you will have to activate the new file-max setting. One can do so by a reboot or you can do it on the fly by executing the following command:
sysctl -p /etc/sysctl.conf
This should have resolved your issue. You can check it by executing the oracle database installer or you can directly check from the command line by executing the following command:
cat /proc/sys/fs/file-max
The result of this should now list 6815744
2 comments:
thanks you ! it worked ..
thanks you sir.. ...... !
Post a Comment