1、Jenkins主机密钥生成:
ubuntu@jenkins:~$ ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/home/ubuntu/.ssh/id_rsa):
Created directory '/home/ubuntu/.ssh'.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/ubuntu/.ssh/id_rsa.
Your public key has been saved in /home/ubuntu/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:SlT+XQJE3mkvMioUEVSWiAmkSJ58QT7p5JoIi4ucynA ubuntu@jenkins
The key's randomart image is:
+---[RSA 2048]----+
| o++ ++++++ |
|=.o = .=.. o . |
|o+ * o . . = . |
| = .. . . o + |
|. o o S + o . |
|+.o o . . o . |
|=oE o . |
|=o. . |
|=+ |
+----[SHA256]-----+

2、将公钥拷贝到authorized_keys
ubuntu@jenkins:~/.ssh$ cat id_rsa.pub >> authorized_keys

3、拷贝公钥到远程主机
ubuntu@jenkins:~$ ssh-copy-id -i [email protected]

4、配置jenkins的SSH server
点击右上角Jenkins——》菜单“系统管理”——》系统设置——》Publish over SSH
jenkins 远程连接linux配置_第1张图片