赞
踩
由于专业要求,我需要经常通过 VSCode、Terminal 等工具连接远程服务器开展工作。而每次连接都需要输入一次或多次密码无疑影响了工作体验。基于该背景,本文介绍了免密登陆远程服务器的方式。
根据自己的邮箱地址,利用命令:
ssh-keygen -t rsa -C "xxx@xxx.com"
生成自己的 id_rsa.pub
文件。此时,对于 MacOS 用户,在 /Users/用户名/.ssh/
目录下可以找到 id_rsa.pub
文件;对于 Windows 用户可以在 C:\\用户\用户名\.ssh\
目录下找到 id_rsa.pub
文件。
将第一步生成的 id_rsa.pub
文件拷贝到 Linux 服务器上的 /root/.ssh/
文件夹中。然后执行以下代码:
chmod 700 /root/.ssh
cd /root/.ssh
cat id_rsa.pub >> authorized_keys
chmod 600 authorized_keys
service ssh restart
至此,即可在该设备上实现免密登陆服务器。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。