File tree Expand file tree Collapse file tree 1 file changed +22
-14
lines changed Expand file tree Collapse file tree 1 file changed +22
-14
lines changed Original file line number Diff line number Diff line change @@ -80,20 +80,28 @@ SSH Proxy Setting:
80
80
* proxy_cipher - the allowed cipher algorithms. If unspecified then a sensible
81
81
82
82
### Setting up SSH Key
83
- Make sure to follow the below steps while creating SSH Keys and using them.
84
- * Login with username specified in Github Secrets.
85
- * Generate a RSA Key-Pair.
86
- ``` bash
87
- ssh-keygen -t rsa -b 4096 -C
" [email protected] "
88
- ```
89
- * Add newly generated key into Authorized keys. Read more about authorized keys [ here] ( https://www.ssh.com/ssh/authorized_keys/ ) .
90
- ``` bash
91
- cat ~ /.ssh/id_rsa.pub >> ~ /.ssh/authorized_keys
92
- ```
93
- * Copy Private Key content and paste in Github Secrets.
94
- ` ` ` bash
95
- clip < ~ /.ssh/id_rsa
96
- ` ` `
83
+
84
+ Make sure to follow the below steps while creating SSH Keys and using them.
85
+ Login with username specified in Github Secrets. Generate a RSA Key-Pair:
86
+
87
+ ``` bash
88
+ ssh-keygen -t rsa -b 4096 -C
" [email protected] "
89
+ ```
90
+
91
+ Add newly generated key into Authorized keys. Read more about authorized keys [ here] ( https://www.ssh.com/ssh/authorized_keys/ ) .
92
+
93
+ ``` bash
94
+ cat ~ /.ssh/id_rsa.pub >> ~ /.ssh/authorized_keys
95
+ ```
96
+
97
+ Copy Private Key content and paste in Github Secrets.
98
+
99
+ ``` bash
100
+ clip < ~ /.ssh/id_rsa
101
+ ```
102
+
103
+ See the detail information about [ SSH login without password] ( http://www.linuxproblem.org/art_9.html )
104
+
97
105
### Example
98
106
99
107
Executing remote ssh commands using password.
You can’t perform that action at this time.
0 commit comments