在Rocky Linux中,可以使用systemctl命令來管理系統服務。以下是一些常用的systemctl命令:
- 啟動一個服務:sudo systemctl start [service_name]
- 停止一個服務:sudo systemctl stop [service_name]
- 重啟一個服務:sudo systemctl restart [service_name]
- 查看一個服務的狀態:sudo systemctl status [service_name]
- 啟用一個服務自動啟動:sudo systemctl enable [service_name]
- 禁用一個服務自動啟動:sudo systemctl disable [service_name]
- 查看所有正在運行的服務:sudo systemctl list-units --type=service
- 查看所有已啟用的服務:sudo systemctl list-unit-files --type=service
通過上述命令,您可以方便地管理Rocky Linux系統中的各種服務。