在 Linux 上提高系统范围内 RLIMIT_NOFILE 的硬限制

发布于 2024-08-29 12:58:48 字数 293 浏览 4 评论 0原文

运行 memcached 时,我们需要提高 RLIMIT_NOFILE,因为我们达到了默认的硬限制 (1024)。然而,提高硬限制需要 root,并且出于各种原因,我们不希望必须以 root 身份运行 memcached 或其包含的 shell。现在我们很高兴以非 root 用户身份运行它。

有没有办法提高系统范围内 RLIMIT_NOFILE 的硬限制,以便我们可以继续以非 root 身份运行 memcached,并简单地提高软限制?

这是带有 2.6 内核的 RedHat Linux。

谢谢!

乔恩

We need to raise RLIMIT_NOFILE when running memcached, as we're hitting the default hard limit (1024). However, raising a hard limit requires root, and for various reasons we don't want to have to run memcached or its containing shell as root. Right now we happily run it as a non-root user.

Is there a way to raise the hard limit for RLIMIT_NOFILE system-wide, so that we can continue to run memcached as non-root and simply raise the soft limit?

This is RedHat Linux with 2.6 kernel.

Thanks!

Jon

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不必了 2024-09-05 12:58:48

您可以使用以下语法在 /etc/security/limits.conf 中设置限制:

<domain> <type> <item> <value>

可以是用户(即 memcache)或组。

You can set the limits in /etc/security/limits.conf with the syntax:

<domain> <type> <item> <value>

The <domain> can be a user (i.e. memcache) or a group.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文