服務指在操做系統中,用以支持各類功能的程序
系統初始化進程systemd 能夠對服務進行相應的控制
進程控制命令
ssh -------->sshd
client -----> server
systemctl --- 服務控制命令
systemctl status sshd --- 查看服務狀態
注 ---> inactive(不可用) active(可用)
systemctl start sshd --- 開啓服務
systemctl stop sshd --- 關閉服務
systemctl restart sshd --- 重啓服務
systemctl reload sshd --- 從新加載服務配置
systemctl enable sshd --- 設定服務開機啓動
systemctl disable sshd --- 設定服務開機不啓動
systemctl list-units --- 列出已經開啓服務當前狀態
systemctl list-unit-files --- 列出全部服務開機啓動的狀態
注 ---> 三種開機狀態 disable不啓動 enable啓動 static靜態
systemctl list-dependencies --- 列出服務的倚賴
systemctl set-default multi-user.target --設定系統啓動級別爲多用戶模式(命令模式)
systemctl set-default graphical.target --- 設定系統啓動級別爲圖形模式
ssh