BIG
shell script simple ssh connection sample code
shell> yum install sshpass
# password 를 이용한 ssh 원격 접속
shell> sshpass -p'[password]' ssh [user]@[ip address] -p[port] -oStrictHostKeyChecking=yes
# *.pem 인증서 파일을 이용한 원격 접속
shell> ssh -i [ 인증서 파일 경로 - *.pem ] [user]@[ip address] -p[port]
LIST
'!!...Linux' 카테고리의 다른 글
[Linux] 디렉토리구조 ( tree ) 출력하여 확인하기 (0) | 2023.02.13 |
---|---|
[Linux] shell script storage usage monitoring email sending (0) | 2023.02.09 |
[Linux] shell script - bash - Loop statement sample code (0) | 2023.02.09 |
[Linux] Centos7 / iptables 설정 (0) | 2023.02.02 |
[Linux] Apache 설정 HTTP_X_FORWARDED_FOR IP 추가 설정 (0) | 2022.10.20 |