1、
https://blog.argcv.com/articles/3212.c
若該用戶是普通用戶
|
1
2
|
$ ulimit -n 65535
-bash: ulimit: open files: cannot modify limit: Operation not permitted
|
若你用 root 當然可以, 但你真的想用 root 跑 db 么?
正確的打開方式其實應該是修改 limit.
打開 /etc/security/limits.conf, 添加內容如下:
|
1
2
|
your_user_name soft nofile 65535
your_user_name hard nofile 65535
|
或者若想要一加一個組
|
1
2
|
@your_group_name soft nofile 65535
@your_group_name hard nofile 65535
|
然后保存。
