gpt4 book ai didi

homebrew - 在 Macos Catalina 上使用 Mariadb 10.4.13 打开的文件太多

转载 作者:行者123 更新时间:2023-12-03 13:44:06 25 4
gpt4 key购买 nike

我在 Macos 10.15.5 和 mariadb 10.4.13 上运行。
由于我做了“brew upgrade”,我有这个错误:Out of resources when opening file './pluto/_connection.MYD' (Errcode: 24 "Too many open files")我试图修改这个文件/usr/local/etc/my.cnf 来添加这一行 open_files_limit = 60000但它不起作用,open_files_limit 变量仍然阻塞在值 256 上。
我试过这条线:sudo ulimit -n 1024 ,但每次我重新启动该值返回到 256
你有什么帮助带我来帮助我解决我的问题吗?

最佳答案

您是否尝试过寻找其他方法来修改 MacOS Catalina 上的打开文件限制?快速搜索使我找到了 here它建议在系统运行时为系统修改以下内容:

sudo launchctl limit maxfiles <soft limit> <hard limit>
This sitethis superuser question建议修改 /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><your soft limit here></string>
<string><your hard limit here></string>
</array>
<key>RunAtLoad</key>
<true/>
<key>ServiceIPC</key>
<false/>
</dict>
</plist>
然后,通过更改权限并验证更改来完成。
sudo chown root:wheel /Library/LaunchDaemons/limit.maxfiles.plist
sudo launchctl load -w /Library/LaunchDaemons/limit.maxfiles.plist
launchctl limit maxfiles

关于homebrew - 在 Macos Catalina 上使用 Mariadb 10.4.13 打开的文件太多,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62511187/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com