設定 macOS 的 open files 上限
今天在做壓力測試,使用 command line 做 websocket client connection. 大約到250左右的連線數後回應錯誤 too many open files, 盤查後發現 macOS 預設的配置不敷使用, 需要加大 maxfiles 的限制.
環境
macOS Catalina 10.15.4
查看
可以看到被 LaunchDaemons([[macos-script-management-with-launchd]]) 給限制住了 maxfiles
1[ 12:30:01 ] ./
2➜ sysctl kern.maxfiles
3kern.maxfiles: 200000
4
5[ 12:30:08 ] ./
6➜ sysctl kern.maxfilesperproc
7kern.maxfilesperproc: 65536
8
9[ 12:30:24 ] ./
10➜ launchctl limit maxfiles
11maxfiles 256 unlimited
12
13[ 12:31:06 ] ./
14➜ ulimit -n
1565536
解決方法
新增文件
1[ 12:35:49 ] ./
2➜ sudo vim /Library/LaunchDaemons/limit.maxfiles.plist
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3<plist version="1.0">
4 <dict>
5 <key>Label</key>
6 <string>limit.maxfiles</string>
7 <key>ProgramArguments</key>
8 <array>
9 <string>launchctl</string>
10 <string>limit</string>
11 <string>maxfiles</string>
12 <string>64000</string>
13 <string>200000</string>
14 </array>
15 <key>RunAtLoad</key>
16 <true/>
17 <key>ServiceIPC</key>
18 <false/>
19 </dict>
20</plist>
修改權限
1[ 12:36:34 ] ./
2➜ sudo chown root:wheel /Library/LaunchDaemons/limit.maxfiles.plist
3
4[ 12:36:44 ] ./
5➜ sudo chmod 644 /Library/LaunchDaemons/limit.maxfiles.plist
重啟系統
重啟完成後再次執行程序,問題排除
1sudo reboot