계정별 pem key 생성 1. 그룹 생성 (그룹명이 계정명과 다를 경우 생성하고, 같으면 2번으로 바로 이동) groupadd testgroup 2. 계정 생성 useradd test -g testgroup 3. RSA 키 생성 su - test centos 에서 ssh-keygen -t rsa -b 2048 cat .ssh/id_rsa.pub >> .ssh/authorized_keys chmod 600 .ssh/authorized_keys ubuntu 에서 ssh-keygen -t rsa ssh-keygen -t rsa -b 4096 ssh-keygen -t rsa -b 4096 -m PEM 4. pem 키 생성 cat .ssh/id_rsa 내용 복사하여 local pc 에서 메모장 열어서 붙여넣기 ..