任務舊指令
新指令使某服務自動啟動
使某服務不自動啟動
檢查服務狀態
systemctl status httpd.service (服務詳細資訊) systemctl is-active httpd.service (僅顯示是否 active)
顯示所有已啟動的服務
chkconfig --list
systemctl list-units --type=service
啟動某服務
停止某服務
重啟某服務
下面以nfs服務為例:
1.啟動nfs服務
systemctl start nfs-server.service2.設定開機自啟動
systemctl enable nfs-server.service3.停止開機自啟動
systemctl disable nfs-server.service4.檢視服務當前狀態
systemctl status nfs-server.service5.重新啟動某服務
systemctl restart nfs-server.service6.檢視所有已啟動的服務
systemctl list -units --type=service開啟防火牆22埠
iptables -i input -p tcp --dport 22 -j accept如果仍然有問題,就可能是selinux導致的
關閉selinux:
修改/etc/selinux/config檔案中的selinux=」」 為 disabled,然後重啟
徹底關閉防火牆:
sudo systemctl status firewalld.servicesudo systemctl stop firewalld.service
sudo systemctl disable firewalld.service
服務管理 systemctl命令
啟動乙個服務 systemctl start postfix.service 關閉乙個服務 systemctl stop postfix.service 重啟乙個服務 systemctl restart postfix.service 顯示乙個服務的狀態 systemctl status postf...
服務管理(systemctl)
1.systemd 系統初始化程式,系統開始的第乙個程序,pid為1 2.systemctl 命令 systemctl list units 列出當前系統服務的狀態 systemctl list unit files 列出服務的開機狀態 systemctl status sshd 檢視指定服務的狀態...
Linux服務操作命令 systemctl
systemctl系統服務管理器指令,它實際上將 service 和 chkconfig 這兩個命令組合到一起 任務舊指令 新指令使某服務自動啟動 使某服務不自動啟動 檢查服務狀態 systemctl status httpd.service 服務詳細資訊 systemctl is active h...