1. 程式人生 > >Redirecting to /bin/systemctl restart sshd.service

Redirecting to /bin/systemctl restart sshd.service

在雲伺服器 ECS Linux CentOS 7 下重啟服務不再通過 service  操作,而是通過 systemctl 操作。 操作說明如下:

1. 檢視 sshd 服務是否啟動:

???704.jpg

看到上述資訊就可以確定是啟動了。

2. 如果沒有啟動,則需要啟動該服務:

  1. systemctl start sshd.service

3. 重啟 sshd 服務:

  1. systemctl restart sshd.service

4. 設定服務開啟自啟:

  1. systemctl enable sshd.service