1、打开文件优化
#对当前shell
ulimit -n 102400
echo "ulimit -n 102400" >> ~/.bashrc
#针对所有用户
sudo vim /etc/security/limits.conf
* soft nofile 102400
* hard nofile 102400
#针对系统
cat /proc/sys/fs/file-max
echo 1024000 > /proc/sys/fs/file-max[......]
1、打开文件优化
#对当前shell
ulimit -n 102400
echo "ulimit -n 102400" >> ~/.bashrc
#针对所有用户
sudo vim /etc/security/limits.conf
* soft nofile 102400
* hard nofile 102400
#针对系统
cat /proc/sys/fs/file-max
echo 1024000 > /proc/sys/fs/file-max[......]