摘要: 文件描述符(file descriptors) /etc/security/limits.conf 这里是当前用户允许打开的文件描述符限制,可以用ulimit -n查看. 修改成如下配置: 注意:root和*必须都要写,这里*代表root以外的其他账户(大坑无误) 注销后重新login生效。 最大连 阅读全文
posted @ 2018-01-27 13:27 Oops!# 阅读(533) 评论(0) 推荐(0) 编辑
摘要: 脚本如下,后续继续优化 #!/bin/bash #author junxi by #this script is only for CentOS 7.x #check the OS platform=`uname -i` if [ $platform != "x86_64" ];then echo 阅读全文
posted @ 2018-01-27 13:15 Oops!# 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 概要:linux系统默认open files数目为1024, 有时应用程序会报Too many open files的错误,是因为open files 数目不够。这就需要修改ulimit和file-max。特别是提供大量静态文件访问的web服务器,缓存服务器(如squid), 更要注意这个问题。网上 阅读全文
posted @ 2018-01-27 12:55 Oops!# 阅读(455) 评论(0) 推荐(0) 编辑