sshサービスを開始
CentOSのデフォルトのインストールはオンです.オフにすると、次の手順でオンになります.
[root@localhost ~]# vim /etc/ssh/sshd_config
#PasswordAuthentication yes
#PermitEmptyPasswords no
PasswordAuthentication yes
# #PasswordAuthentication no , NO YES
PermitRootLogin yes
#PermitRootLogin yes
[root@localhost ~]# /etc/init.d/sshd restart // SSH
Stopping sshd: [ OK ]
Starting sshd: [ OK ]
[root@localhost ~]# /etc/init.d/sshd status // SSH
openssh-daemon (pid 1963) is running...
[root@localhost ~]#