본문 바로가기

개발/linux

CentOS7 sshd 포트변경

보안강화로 설치된 리눅스에서는 /etc/ssh/sshd_config 포트만 변경 해서는 데몬오류가 발생 한다 


Redirecting to /bin/systemctl restart sshd.service

Job for sshd.service failed because the control process exited with error code. See "systemctl status sshd.service" and "journalctl -xe" for details.

(위 메세지는 SSH 데몬 설정에서 22번 기본 포트를 변경하려고 할 시에 발생하는 메세지)


yum install policycoreutils-python


semanage port -a -t ssh_port_t -p tcp 22110


systemctl restart sshd 또는 service sshd restart 를 실행


netstat -anp | grep LISTEN | grep sshd