管理ノードと計算ノードの間の通信はSSHで行います。
$ ssh-keygen Generating public/private ed25519 key pair. Enter file in which to save the key (/home/sugimoto/.ssh/id_ed25519): Enter passphrase for "/home/sugimoto/.ssh/id_ed25519" (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /home/sugimoto/.ssh/id_ed25519 Your public key has been saved in /home/sugimoto/.ssh/id_ed25519.pub The key fingerprint is: SHA256:dPdYgf+eSWElVrEo2fIP3HiUqL9vitrYi30JTaEGfVw sugimoto@head The key's randomart image is: +--[ED25519 256]--+ | . ..oEo| | . .++=.+| | . o++*o=.| | . . +*==o | | S ..+=o+.| | ...+..| | ..ooo| | * .o.+.| | +.*oo+. | +----[SHA256]-----+
$ cat ~/.ssh/id_ed25519.pub >> ~/.ssh/authorized_keys
$ echo "StrictHostKeyChecking no" >> ~/.ssh/config
$ chmod 600 ~/.ssh/id_ed25519 $ chmod 600 ~/.ssh/authorized_keys $ chmod 700 ~/.ssh/
$ ssh node11