Home [Linux] SSH와 SCP
Post
Cancel

[Linux] SSH와 SCP

SSH란?

Secure Shell의 줄임말로 원격 호스트에 접속하기 위한 보안 프로토콜.

1
ssh user@ip

SSH 보안

ssh는 연결할때 비대칭키 방식을 사용한다. 연결할때 인증받기 위해 개인키인 pem 키를 사용.

1
ssh -i ssh_key.pem user@ip

*i = identity file


SCP란?

Secure Copy의 약자로 서버간의 파일 전송프로토콜이다.

원격서버에서 로컬로 파일 복사하기

1
scp username@ip:<path/source file> <destination path>

🛑 Permmission Denined Error

scp를 사용하여 파일을 복사하려 했는데 Permission Denined Error가 떴다. 키를 잘챙기자😬

1
scp -i <ssh key file>
This post is licensed under CC BY 4.0 by the author.