在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資源限制。