vi /etc/ssh/sshd_config
cat /etc/passwd
PasswordAuthentication yes
→ PasswordAuthentication no
systemctl restart sshd
담당자 계정 생성
sudo adduser [계정명] --disabled-password
sudo su - [계정명]
Pem Key 등록을 위한 .ssh 디렉토리 설정
mkdir .ssh
chmod 700 .ssh
touch .ssh/authorized_keys
chmod 600 .ssh/authorized_keys
Pem Key 생성
ssh-keygen -t rsa
Pem Key 등록을 위해 id_rsa.pub 파일의 내용을 authorized_keys 파일에 저장
cp id_rsa.pub authorized_keys
id_rsa 파일을 이용하여 인스턴스 접속