Linux 修改最大连接数脚本
Posted 江山暮
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 修改最大连接数脚本相关的知识,希望对你有一定的参考价值。
#!/bin/bash
fileMax=$(grep "fs.file-max" /etc/sysctl.conf | wc -l)
if [ $fileMax -eq 1 ];then
sed -i ‘/fs.file-max/c\fs.file-max = 70000‘ /etc/sysctl.conf
else
sed -i ‘$a\fs.file-max = 70000‘ /etc/sysctl.conf
fi
nofileMax=$(grep "soft nofile" /etc/security/limits.conf | wc -l)
if [ $nofileMax -eq 1 ];then
sed -i ‘/soft nofile/c\* soft nofile 10000‘ /etc/security/limits.conf
else
sed -i ‘$a\* soft nofile 10000‘ /etc/security/limits.conf
fi
hdfileMax=$(grep "hard nofile" /etc/security/limits.conf | wc -l)
if [ $hdfileMax -eq 1 ];then
sed -i ‘/hard nofile/c\* hard nofile 30000‘ /etc/security/limits.conf
else
sed -i ‘$a\* hard nofile 30000‘ /etc/security/limits.conf
fi
sysctl -p
以上是关于Linux 修改最大连接数脚本的主要内容,如果未能解决你的问题,请参考以下文章