기본적으로 우분투(서버)를 설치하면 ssh가 설치되어있지 않습니다.

SSH를 설치해보도록 하겠습니다.


1. 설치

# sudo apt-get install openssh-server


2. 재시작

# sudo /etc/init.d/ssh restart


3. 확인

# ps -ef | grep ssh

root      3341     1  0 15:28 ?        00:00:00 /usr/sbin/sshd -D


# sudo netstat -ntlp | grep ssh

tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      3341/sshd       

tcp6      0                0 :::22                         :::*               LISTEN      3341/sshd


22번 포트를 사용해 리슨중인것을 확인할수있습니다.

+ Recent posts