SSH Key CentOS 비밀번호 없이 로그인
키 생성>> ssh-keygen -t rsa passphrase는 빈값으로 입력해야 자동로그인이 편함 scp로 remote 서버에 key.pub 파일 전송>> scp -P pot [key.pub] [root@IP:key.pub] remote 서버에서 authorized_keys에 key.pub 내용추가>> cat ./key.pub >> ~/.ssh/authorized_keys client에서 접속>> ssh -i ~/.ssh/key -p [PORT] root@[IP]
- Programming/CentOS
- · 2019. 6. 28.