세모튜브

Ubuntu : Enable ssh 본문

설치

Ubuntu : Enable ssh

iDevKim 2021. 1. 8. 16:49

터미널을 열고 openssh-server를 설치합니다.

$ sudo apt update

$ sudo apt install openssh-server -y

 

openssh-server 서비스 활성화 확인

$ sudo systemctl status ssh

 

openssh-server 포트 열기

$ sudo ufw allow ssh

 

재부팅

$ sudo reboot

.

.

============================

원격에서 접속 테스트

$ ssh username@ip_address

============================