相关命令
下载软件
yum install openssh-server
查看公私钥
ll /etc/ssh/
查看配置文件
rpm -qf /etc/ssh/sshd_config
修改ssh端口号(改成2222)
vim /etc/ssh/sshd_config
拒绝root用户远程登录
进入配置文件所在文件夹
cd /etc/ssh/sshd_config.d/
进入配置文件
vim 01-permitrootlogin.conf
将文件中的yes改为no
仅允许特定用户登录
创建新用户
useradd ag
id ag
passwd ag
进入配置文件
vim /etc/ssh/sshd_config
重启服务
systemctl restart sshd
客户端通过秘钥登录服务端root用户
在客户端登录服务端
ssh root@服务端IP地址
生成公私钥
ssh-keygen
将秘钥拷贝到服务端,实现免密登录
ssh-copy-id root@192.168.253.140