服务器默认是用户名+密码登陆,通常为了安全我们会改为SSH登陆
假如我们需要把root账号改为ssh登陆,如下
客户端(如 本机
#生成 public key
ssh-keygen -t rsa -C "cw@localhost"
#...连连回车...
#查看 public key
cat ~/.ssh/id_rsa.pub
服务端(如 服务器
cd ~
#使其自动创建.ssh目录
ssh-keygen -t rsa -C "root@localhost"
echo "客户端用户的public key" >>authorized_keys
chmod 600 authorized_keys...