- 代碼: 選擇全部
ulimit: open files: cannot modify limit: Operation not permitted
error.
其中/etc/profile有加入
- 代碼: 選擇全部
if [ $USER = "oracle" ]; then
if [ $SHELL = "/bin/ksh" ]; then
ulimit -p 16384
ulimit -n 63536
else
ulimit -u 16384 -n 63536
fi
fi
/etc/security/limit.conf 的 settting
- 代碼: 選擇全部
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 65536
oracle hard nofile 65536
和/etc/sysctl.conf 設定
- 代碼: 選擇全部
fs.file-max = 65536
可是 ulimit -a
- 代碼: 選擇全部
open files (-n) 1024
卻似乎依然是 1024. 請問 還有那邊需要修改呢?
謝謝