在Linux系統中,可以使用以下命令來啟動和停止服務:
啟動服務:systemctl start <service_name>
停止服務:systemctl stop <service_name>
其中,<service_name>
是服務的名稱,如httpd
、sshd
等。另外,還可以使用restart
命令來重啟服務,使用enable
命令來設置服務開機自啟動,使用disable
命令來禁止服務開機自啟動。
例如,啟動httpd
服務的命令為:
systemctl start httpd
停止httpd
服務的命令為:
systemctl stop httpd