linux sshd ssh 服务的启动和使用

1,sshd服务安装

yum install openssh-server

2,[root@localhost /]# vi /etc/ssh/sshd_config

Port 22

Protocol 2

PermitRootLogin yes

去掉这三行的注释

最后一个重要!因为它是允许root用户直接使用sshd服务登录服务器的!

3,重新启动sshd服务

[root@localhost /]# service sshd restart

4,设置sshd为系统自动启动

[root@localhost /]# chkconfig --level 35 sshd on

5,使用客户端连接即可!

你可能感兴趣的:(linux sshd ssh 服务的启动和使用)