Browsing this Thread:   1 Anonymous Users






SSH 免密码登陆 密钥登录
#1
Just can't stay away
Just can't stay away


See User information
1. ssh-keygen命令生成密钥
ssh-keygen


2. 上传ssh公钥
2.1 手动上传 (不推荐)
cat ~/.ssh/id_rsa.pub ssh user@host "mkdir -p ~/.ssh && cat >> ~/.ssh/authorized_keys"


chmod 644 ~/.ssh/authorized_keys

2.2 ssh-copy-id 自动上传公钥
ssh-copy-id -i id_rsa  xlxz@xlxz.org


3. ssh-agent ssh-add 命令

3.1 ssh-agent命令它让用户在整个 Bash 对话(session)之中,只在第一次使用 SSH 命令时输入密码,然后将私钥保存在内存中,后面都不需要再输入私钥的密码了
ssh-agent bash


3.2 使用ssh-add命令添加私钥
ssh-add  id_rsa


4 使用 ssh 命令正常登录远程服务器。

ssh  xlxz@xlxz.org


5 关闭密码登录
对于 OpenSSH,具体方法就是打开服务器 sshd 的配置文件/etc/ssh/sshd_config,将PasswordAuthentication这一项设为no。
$  vim /etc/ssh/sshd_config

PasswordAuthentication no








Posted on: 2022/2/17 15:07
Top








friend links
Themes

(2 themes)
Login
Username:

Password:


Lost Password?
Register now!
Categories
Xoops (11)
--Modules (2)
--Themes (0)
Article (8)