File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -95,15 +95,17 @@ and copy the binary
95
95
``` bash
96
96
rm -f skycore ; wget http://dunkirk.mcs.anl.gov/~wgerlach/skycore
97
97
chmod +x skycore
98
- for i in ${MACHINES} ; do scp -i < your_private_ssh_key > -o StrictHostKeyChecking=no ./skycore core@${i} : ; done
98
+ for i in ${MACHINES} ; do scp -i coreos.pem -o StrictHostKeyChecking=no ./skycore core@${i} : ; done
99
99
```
100
100
101
101
## Log in to your CoreOS cluster
102
102
103
103
Login with forwarding your ssh user agent. Run these commands on your client outside of the CoreOS cluster:
104
104
``` bash
105
+ cd ~ /.ssh
106
+ ln -s < your private key> coreos.pem
105
107
eval $( ssh-agent)
106
- ssh-add < path to your private key >
108
+ ssh-add coreos.pem
107
109
ssh -A core@< instance>
108
110
```
109
111
You may want to assign a public IP address to one of you CoreOS instances.
You can’t perform that action at this time.
0 commit comments