키 생성
>> 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' 카테고리의 다른 글
[CentOS] tomcat 설치 (0) | 2019.06.28 |
---|---|
[centos7] node 최신버전 설치.. (0) | 2019.04.21 |
[CentOs] nginx 설치하기 (0) | 2019.03.08 |
[CentOS] java 설치 (0) | 2018.02.18 |