Added root user login check to ensure SSH keys exchanged.
Change-Id: I8513bc883ac273af8dcc2f61562a838d33b45a82
| ... | ... |
@@ -400,6 +400,10 @@ SSH keys need to be exchanged between each compute node: |
| 400 | 400 |
|
| 401 | 401 |
ssh-keyscan -H DEST_HOSTNAME | sudo tee -a /root/.ssh/known_hosts |
| 402 | 402 |
|
| 403 |
+3. Verify that login via ssh works without a password:: |
|
| 404 |
+ |
|
| 405 |
+ ssh -i /root/.ssh/id_rsa.pub stack@DESTINATION |
|
| 406 |
+ |
|
| 403 | 407 |
In essence, this means that every compute node's root user's public RSA key |
| 404 | 408 |
must exist in every other compute node's stack user's authorized_keys file and |
| 405 | 409 |
every compute node's public ECDSA key needs to be in every other compute |