当前位置:   article > 正文

ulimit: open files: cannot modify limit: Operation not permitted

ulimit: open files: cannot modify limit: operation not permitted

问题描述

-bash: ulimit: open files: cannot modify limit: Operation not permitted
  • 1

解决方法1:直接修改limits.conf配值文件,且使得永久生效

vim /etc/security/limits.conf
  • 1

在末尾添加以下内容

smis soft nproc 16384
smis hard nproc 16384
smis soft nofile 65536
smis hard nofile 65536
smis soft memlock 4000000
smis hard memlock 4000000
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

再次切换到smis用户,未出现之前的错误提示。

配值后建议重启一下服务器。

解决方法2:使用ulimit命令来修改

在使用ulimit命令方式来修改的话,当服务器被重启后会失效(临时性更改)

ulimit 用于限制 shell 启动进程所占用的资源

  • 支持以下各种类型的限制:所创建的内核文件的大小、进程数据块的大小、Shell进程创建文件的大小、内存锁住的大小、常驻内存集的大小
  • 以及打开文件描述符的数量、分配堆栈的最大大小、CPU 时间、单个用户的最大线程数、Shell 进程所能使用的最大虚拟内存
  • 以及支持硬资源和软资源的限制

使用当前用户来修改,即oracle用户,我们将其改为60000

[smis@localhost config]$ ulimit -n 60000
  • 1

可以看到该资源限制已经被修改

[smis@localhost config]$ ulimit -a | grep "open files" 
open files                      (-n) 60000
  • 1
  • 2

但配值文件并未发生任何变化

[smis@localhost config]$ cat /etc/security/limits.conf | grep nofile
smis	soft    nofile  1024
smis	hard    nofile   65536
  • 1
  • 2
  • 3
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/241588
推荐阅读
相关标签
  

闽ICP备14008679号