在CentOS中,可以使用systemd对资源进行限制。下面是创建和管理systemd资源限制的步骤:
sudo vi /etc/systemd/system/example.service
[Unit]
Description=Example Service
[Service]
ExecStart=/path/to/your/service
CPUQuota=50%
MemoryLimit=1G
[Install]
WantedBy=multi-user.target
保存并关闭文件
重新加载systemd配置
sudo systemctl daemon-reload
sudo systemctl start example.service
sudo systemctl enable example.service
systemctl status example.service
通过以上步骤,你可以在CentOS中创建和管理systemd资源限制。