gpt4 book ai didi

mysql - 如何使用ansible增加打开进程和文件的限制

转载 作者:可可西里 更新时间:2023-11-01 06:34:28 26 4
gpt4 key购买 nike

我正在设置一个 MySQL 服务器,我被告知要增加打开进程数的 ulimit

我跑了

- name: "increase limit for the number of open files"
shell: "ulimit -n 64000"
- name: "increase limit for the number of open processes"
shell: "ulimit -u 64000"

ansible-playbook 上,它不仅会抛出错误“非法选项 -u”,而且打开文件限制 (-n) 似乎也没有得到修改。 (我在服务器上运行了 ulimit -n 但它保持不变)

增加这些限制的推荐方法是什么,我应该如何在 Ansible 中执行?

我看到了 pam_limits 模块。我应该使用这个模块来修改 nprocnofile 吗?如果有,是哪个域?

谢谢。

最佳答案

从 Ansible 2.0.0 开始,a new official module supports configuring PAM.

# Add or modify nofile soft limit for the user joe
- pam_limits:
domain: joe
limit_type: soft
limit_item: nofile
value: 64000

关于mysql - 如何使用ansible增加打开进程和文件的限制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38155108/

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