コンテンツにスキップ

ツール:SSH

install

Text Only
1
2
3
sudo apt install -y openssh-server
sudo gedit /etc/ssh/sshd_config
service sshd restart

sshd_config

Text Only
1
2
3
#PasswordAuthentication yes
       ↓
PasswordAuthentication no

ssh key

Text Only
1
2
3
ssh-keygen
mv ~/.ssh/id_rsa.pub ~/.ssh/authorized_keys
chmod 600 ~/.ssh/authorized_keys
id_rsaを接続元のクライアントにコピーしてssh接続する