mac 解决 too many open files 的办法

mac 的操作系统出现 too many open files 的解决办法

mac 解决 too many open files 的办法

查看当前值

1
2
3
sysctl kern.maxfiles
sysctl kern.maxfilesperproc

设置新值,改为你想要的值

1
2
3
sudo sysctl -w kern.maxfiles=120480
sudo sysctl -w kern.maxfilesperproc=120480
ulimit -S -n 120480

如果前面两个数值小于第三个,则会出现下面提示:

1
-bash: ulimit: open files: cannot modify limit: Invalid argument

本文网址: https://pylist.com/topic/127.html 转摘请注明来源

Suggested Topics

Golang 服务之坑:too many open files

出现这个问题是因为服务的文件句柄超出系统限制。当Go服务程序出现这个问题,首先应该看系统设置,然后再看程序本身。...

在终端使用Mac diskutil 命令格式化顽固U盘

经常遇到某些U盘合并不了分区、格式化不了、windows 下识别不了、空间“丢失”等情况,使用Mac 系统自带的图形化磁盘工具也解决不了问题,在终端下能轻松搞定,这里记录一下过程。...

Leave a Comment