检查本地机器文件
.ssh/id_rsa.pub
是否存在, 不存在时,执行
ssh-keygen -t rsa -b 2048
然后把本地密钥通过命令 ssh-copy-id 复制到 远程服务器。
ssh-copy-id root@xxxx.com
以后登录服务器,只需要运行
ssh ‘root@xxxx.com‘
就可以了
检查本地机器文件
.ssh/id_rsa.pub
是否存在, 不存在时,执行
ssh-keygen -t rsa -b 2048
然后把本地密钥通过命令 ssh-copy-id 复制到 远程服务器。
ssh-copy-id root@xxxx.com
以后登录服务器,只需要运行
ssh ‘root@xxxx.com‘
就可以了