Please enable Javascript to view the contents

Linux日常优化

 ·  ☕ 1 分钟

第一步,增加能打开的最大文件描述符

编辑limits.conf

1
vim /etc/security/limits.conf

增加下面两行

* soft nofile 65535

* hard nofile 65535

然后设置当前的最大打开文件数

1
ulimit -n 65535

第二步,调整kernel 参数

1
vim /etc/sysctl.conf 
fs.file-max = 65535

最后执行

1
2
3
4
5
6
7
echo 'net.core.default_qdisc=fq' >> /etc/sysctl.conf
echo 'net.ipv4.tcp_congestion_control=bbr' >> /etc/sysctl.conf
sysctl -p
sysctl net.ipv4.tcp_available_congestion_control
lsmod | grep bbr
sysctl net.ipv4.tcp_congestion_control
more /proc/sys/net/core/default_qdisc

来重新加载