「Aws/ec2/adduser」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→ec2にユーザーアカウント作成) |
(→ec2にユーザーアカウント作成) |
||
行7: | 行7: | ||
$ touch .ssh/authorized_keys | $ touch .ssh/authorized_keys | ||
$ chmod 600 .ssh/authorized_keys | $ chmod 600 .ssh/authorized_keys | ||
− | + | .ssh/authorized_keysに自身のpcの ~/.ssh/id_rsa.pub のデータを貼り付ける | |
ssh-rsa AAAAB3Nzaxxxx~略 | ssh-rsa AAAAB3Nzaxxxx~略 | ||
2018年3月1日 (木) 15:49時点における最新版
ec2にユーザーアカウント作成
例)newuserを作りたい場合
$ sudo adduser newuser $ sudo su - newuser $ mkdir .ssh $ chmod 700 .ssh $ touch .ssh/authorized_keys $ chmod 600 .ssh/authorized_keys
.ssh/authorized_keysに自身のpcの ~/.ssh/id_rsa.pub のデータを貼り付ける
ssh-rsa AAAAB3Nzaxxxx~略
ec2のユーザーアカウント削除
sudo userdel -r newuser
参考
公式 https://docs.aws.amazon.com/ja_jp/AWSEC2/latest/UserGuide/managing-users.html