Changes between Version 57 and Version 58 of gadi
- Timestamp:
- Mar 13, 2020 10:42:32 AM (12 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
gadi
v57 v58 41 41 === SSH Setup === 42 42 43 At the moment the remote-job-submission system that was on raijin is not working on gadi. Therefore you need to set up passphraseless SSH between accessdev and gadi in both directions. 44 43 45 ==== Cylc connection gadi to accessdev ==== 44 46 … … 60 62 Host accessdev.nci.org.au 61 63 IdentityFile ~/.ssh/id_rsa.accessdev 64 }}} 65 66 ==== Cylc connection accessdev to gadi ==== 67 68 On accessdev, run 69 {{{ 70 ssh-keygen -f ~/.ssh/id_rsa.gadi 71 }}} 72 Just press 'enter' when prompted for a passphrase 73 74 Copy the public key to gadi with 75 {{{ 76 ssh-copy-id -i ~/.ssh/id_rsa.gadi.pub gadi.nci.org.au 77 }}} 78 79 Configure accessdev to use the key when connecting to gadi by adding a new section to '~/.ssh/config': 80 {{{ 81 Host gadi.nci.org.au gadi 82 IdentityFile ~/.ssh/id_rsa.gadi 83 IdentitiesOnly yes 62 84 }}} 63 85
