ดูเหมือนว่ามีวิธีการที่แตกต่างกันอย่างสิ้นเชิงสำหรับการเปลี่ยนการ จำกัด ไฟล์เปิดสำหรับ OS X แต่ละรุ่น!
สำหรับ OS X Sierra (10.12.X) คุณต้อง:
1. ในการLibrary/LaunchDaemons
สร้างไฟล์ชื่อlimit.maxfiles.plist
และวางต่อไปนี้ใน (รู้สึกอิสระที่จะเปลี่ยนตัวเลขสองตัว (ซึ่งเป็นข้อ จำกัด นุ่มและยากตามลำดับ):
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>limit.maxfiles</string>
<key>ProgramArguments</key>
<array>
<string>launchctl</string>
<string>limit</string>
<string>maxfiles</string>
<string>64000</string>
<string>524288</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>ServiceIPC</key>
<false/>
</dict>
</plist>
2. เปลี่ยนเจ้าของไฟล์ใหม่ของคุณ:
sudo chown root:wheel /Library/LaunchDaemons/limit.maxfiles.plist
3. โหลดการตั้งค่าใหม่เหล่านี้:
sudo launchctl load -w /Library/LaunchDaemons/limit.maxfiles.plist
4. สุดท้ายตรวจสอบว่าขีด จำกัด นั้นถูกต้อง:
launchctl limit maxfiles