시그마 삽질==six 시그마

리눅스 SCP 사용법 본문

프로그래밍/Linux

리눅스 SCP 사용법

Ethan Matthew Hunt 2020. 3. 14. 11:03

1. SCP 정의 (위키피디아)

Secure copy protocol (SCP) is a means of securely transferring computer files between a local host and a remote host or between two remote hosts. It is based on the Secure Shell (SSH) protocol

 

2.기본사용법

 

scp <옵션> <원본파일위치> <복사될위치>



1) 원격지 ->로컬 

$ sudo scp -i  key위치 원격지계정@원격서버주소:원격파일위치 로컬위치

 

key위치: 로컬에 저장된 원격지 퍼블릭 키 ~/.ssh/key.pem  ==  /home/ec2-user/.ssh/key.pem


ex)
$ sudo scp -i  /home/ec2-user/.ssh/key.pem ec2-user@10.30.0.52:/home/ec2 user/index.html /usr/local/tomcat/webapps/ROOT/WEB-INF/views/index.html


2) 로컬->원격지  

$ sudo scp -i key위치 로컬계정@로컬서버주소:로컬파일위치 원격위치

 

ex)
scp -i /home/ec2-user/.ssh/key.pem /usr/local/tomcat/webapps/ROOT/WEB-INF/views/index.html   ec2-user@10.30.0.52:/home/ec2-user/index.html

'프로그래밍 > Linux' 카테고리의 다른 글

RPM & YUM  (0) 2020.03.16
리눅스 디스크 용량 확인(df/ du)  (0) 2020.03.15
리눅스 폴더 찾기, 파일 찾기, 문자열 찾기  (0) 2020.03.14
리눅스 네트워크 설정 파일  (0) 2020.03.14
리눅스 타임존 변경  (0) 2020.03.14
Comments