반응형
요즘 마이크로소프트 터미널이 잘 되어있어서 putty를 굳이 설치하지 않아도 서버에 접속할 수 있다.
그리고 putty보다 예쁘게 사용할 수 있다.
Windows Terminal 설치
이미 설치되어있다면 건너뛰어도 된다.
1. Microsoft store에 접속한다.
2. '터미널'을 검색한다
3. Windows Terminal을 설치한다.
설치가 다 되면 열기를 누른다
ssh 설정
1. ssh 키를 지정된 경로에 저장한다.
C:\Users\사용자명
으로 이동해서 .ssh 폴더를 만든다.
C:\Users\ 사용자명 \.ssh에 ssh키를 저장한다.
2. config 파일을 만든다
주의 : 확장자 없이 만들어야 한다.
내용은 아래와 같이 적는다.
Host mydomain
HostName mydomain.com
Port 22
User ubuntu
IdentityFile ~/.ssh/key.pem
Key | Value |
Host | 서버 이름 ( 잘 기억할 수 있는 이름을 만들어 적으면 된다) |
HostName | 서버 주소 |
Port | ssh 포트(보통 22이다.) |
User | 접속할 계정 (윈도우 계정이 아니라 ec2 서버 내부 계정이다) |
IdentityFile | 키 위치를 입력하면 된다. (~/.ssh/키이름.키확장자) |
서버 접속하기
1. 터미널에서 ssh 서버이름 형태로 입력한다.
C:\Users\liz> ssh mydomain
2. 접속이 된 것을 확인한다.
PS C:\Users\liz> ssh mydomain
Welcome to Ubuntu 20.04.6 LTS (GNU/Linux 5.15.0-1052-aws x86_64)
* Documentation: https://help.ubuntu.com
* Management: https://landscape.canonical.com
* Support: https://ubuntu.com/pro
System information as of Mon Feb 12 15:07:59 KST 2024
System load: 0.0 Processes: 157
Usage of /: 3.1% of 310.13GB Users logged in: 0
Memory usage: 37%
Swap usage: 0% IPv4 address for eth0:
* Ubuntu Pro delivers the most comprehensive open source security and
compliance features.
https://ubuntu.com/aws/pro
Expanded Security Maintenance for Applications is not enabled.
5 updates can be applied immediately.
To see these additional updates run: apt list --upgradable
3 additional security updates can be applied with ESM Apps.
Learn more about enabling ESM Apps service at https://ubuntu.com/esm
New release '22.04.3 LTS' available.
Run 'do-release-upgrade' to upgrade to it.
*** System restart required ***
Last login: Mon Feb 12 03:52:03 2024 from
서버 나가기
1. exit를 입력한다.
ubuntu:~$ exit
logout
Connection to mydomain.com closed.