Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果像这样以 root 身份启动:
memcached -c 5000 ...
我是否需要我的启动脚本如下所示:
ulimit -n 5000 memcached -c 5000 ...
还是 memcached 会自动设置最大打开文件数?
memcached -c 不会影响您的用户限制设置。
如果您将最大同时连接数设置为超出 ulimit 允许的值,则您需要执行 ulimit 命令或更改 limits.conf (/etc/security/limits.conf) 文件以允许足够数量的连接/文件描述符。