首页 > 其他 > 详细

centos7修改最大文件打开数量

时间:2021-06-15 23:55:21      阅读:86      评论:0      收藏:0      [点我收藏+]

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, 添加内容如下:

/etc/security/limits.conf
1
2
your_user_name           soft    nofile          65535
your_user_name           hard    nofile          65535

或者若想要一加一个组

/etc/security/limits.conf
1
2
@your_group_name           soft    nofile          65535
@your_group_name           hard    nofile          65535

然后保存。

centos7修改最大文件打开数量

原文:https://www.cnblogs.com/yaok430/p/14886568.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!