We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent caff7a5 commit fc655d7Copy full SHA for fc655d7
ssh/README.md
@@ -18,12 +18,12 @@ ssh -p 3022 cloudera@127.0.0.1 mkdir -p .ssh
18
19
### 4. Upload Generated Public Keys from Client to Remote machine
20
```bash
21
-cat .ssh/id_rsa.pub | ssh -p 3022 cloudera@127.0.0.1 'cat >> .ssh/authorized_keys'
+cat ~/.ssh/id_rsa.pub | ssh -p 3022 cloudera@127.0.0.1 'cat >> ~/.ssh/authorized_keys'
22
```
23
24
### 5. Set Permissions on Remote machine
25
26
-ssh -p 3022 cloudera@127.0.0.1 "chmod 700 .ssh; chmod 640 .ssh/authorized_keys"
+ssh -p 3022 cloudera@127.0.0.1 "chmod 700 .ssh; chmod 640 ~/.ssh/authorized_keys"
27
28
29
### 5. Make an alias for Remote server
0 commit comments