ssh 설치가 안되었을 때는 ....
~]# yum install openssh-server openssh-clients openssh-askpass
명령을 실행하고 y 를 눌러주면 끝
sshd 서비스 포트변경 ( 22 -> 2222 ) 및 root 로그인 막기
~]# vi /etc/sshd_config
--- 생략 ---
Port 2222
--- 생략 ---
PermitRootLogin no
--- 생략 ---
:wq (저장 후 나감)
----------------------------------------------------
#PermitRootLogin yes
를 찾아 변경해 줘야 한다.
----------------------------------------------------
구동
~]# /etc/init.d/sshd start
구동 확인
~]# ps -ef | grep sshd
root 00000 1 0 09:05 ? 00:00:00 /usr/sbin/sshd
root 00000 16871 0 09:15 pts/0 00:00:00 grep sshd
ssh 접속 확인
~]# ssh -l root localhost -p 2222
접속이 된다면 설정 오류 (root 로그인이 안되어야 한다)
~]# ssh -l tester localhost -p 2222
접속이 된다면 설정 완료.
'Server(Windows&Linux)' 카테고리의 다른 글
[LInux] ext3 에서 Quota 설정하기 (0) | 2014.12.26 |
---|---|
[Linux] yum 사용하기... (0) | 2014.12.26 |
[Windows&Linux] 프로세스 종료 시키기 (0) | 2014.03.06 |
[Windows] Tomcat 서비스 체크를 위한 Bat 파일 작성 (0) | 2014.03.06 |
[Windows] Tomcat Service Restart (0) | 2014.02.27 |