frp 报错 too many open files
frp报accept4_too_many_open_files
QQ群:397745473
问题描述
报错:
too many open files
参考
https://github.com/fatedier/frp/issues/752
解决方法
参考:https://www.jianshu.com/p/10ac8e141d76
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| # echo 655350 > /proc/sys/fs/file-max # sysctl -w "fs.file-max=102400",前面2种重启机器后会恢复为默认值
# vim /etc/sysctl.conf, 加入以下内容,重启生效 fs.file-max=655350 net.nf_conntrack_max = 655350 net.netfilter.nf_conntrack_max = 655350
# vim /etc/security/limits.conf //加入以下配置,重启即可生效 * hard nofile 655350 * soft nofile 655350
重启后用 ulimit -a 确认修改是否成功
ulimit -n 655350 或 ulimit -SHn 655350
② 在 /etc/profile 中增加一行 ulimit -SHn 655350, 然后运行 source /etc/profile 命令让修改立即生效.
—— /etc/profile 文件是所有系统用户的配置文件, 修改后会影响当前系统的所有注册用户.
|
QQ群:397745473