systemctl是linux 命令
systemctl命令用法詳解
系統環境:Fedora 16
binpath:/bin/systemctl
package:systemd-units
systemctl enable httpd.service
將httpd服務設為開機自動啟動
systemctl disable httpd.service
禁止httpd服務開機自動啟動
systemctl status httpd.service
檢視httpd服務的執行狀態
//Loaded行中的enabled表示該服務是開機自動啟動的,disable表示該服務不是開機自動啟動的
systemctl is-active httpd.service
檢查httpd服務是否處於活動狀態
systemctl start httpd.service
啟動httpd服務
systemctl stop httpd.service
停止httpd服務
systemctl restart httpd.service
重新啟動httpd服務
systemctl是linux 命令
systemctl命令用法詳解
系統環境:Fedora 16
binpath:/bin/systemctl
package:systemd-units
systemctl enable httpd.service
將httpd服務設為開機自動啟動
systemctl disable httpd.service
禁止httpd服務開機自動啟動
systemctl status httpd.service
檢視httpd服務的執行狀態
//Loaded行中的enabled表示該服務是開機自動啟動的,disable表示該服務不是開機自動啟動的
systemctl is-active httpd.service
檢查httpd服務是否處於活動狀態
systemctl start httpd.service
啟動httpd服務
systemctl stop httpd.service
停止httpd服務
systemctl restart httpd.service
重新啟動httpd服務