当前位置:   article > 正文

mac docker gitlab 503:too many open files_too many open files gitlab-runner delete

too many open files gitlab-runner delete

背景

在mac上装了个docker、在docker里起了个gitlab,结果gitlab太吃电脑了,随便一操作就挂了报503.。。通过日志发现是too many open files。

解决办法

只有增加mac的文件打开数。结果发现ulimit -n 最大256.。坑爹啊。
通过查找google发现通过以下方式来修改,只在10.14、10.12上测试OK,应该10.12以后的都可以。:

  1. 创建文件sudo vim /Library/LaunchDaemons/limit.maxfiles.plist
  2. 复制以下内容,里面数值自己改:
<?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> 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  1. 修改权限sudo chown root:wheel /Library/LaunchDaemons/limit.maxfiles.plist
  2. 加载sudo launchctl load -w /Library/LaunchDaemons/limit.maxfiles.plist
  3. 查看最大限制launchctl limit maxfiles,会发现变成64000了
  4. 但是每次启动ulimit -n发现还是256.。需要将修改命令添加到环境变量中~/.bash_profile:ulimit -n 64000 。别忘了source ~/.bash_profile
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/654274
推荐阅读
相关标签
  

闽ICP备14008679号