centos 7 ssh 설치중 이런 오류가 뜬다면? Job for ssh.service failed because the control process exited with error code. See "systemctl status ssh.service" and "journalctl -xe" for details.
[root@localhost ~]# firewall-cmd --permanent --zone=public --add-port=1234/tcp
[root@localhost ~]# firewall-cmd --reload
[root@localhost ~]# vi sshd_config
#Port 22
Port 1234
# PermitRootLogin yes root ssh 접속금지하는거
PermitRootLogin no
[root@localhost ~]# systemctl restart sshd
어? 근데 아래와같은 오류가난다
Job for ssh.service failed because the control process exited with error code. See "systemctl status ssh.service" and "journalctl -xe" for details.
해결책아래와같이 실행
[root@localhost ~]# yum install policycoreutils-python
[root@localhost ~]# semanage port -l | grep ssh
[root@localhost ~]# semanage port -a -t ssh_port_t -p tcp 1981
[root@localhost ~]# semanage port -l | grep ssh
[root@localhost ~]# firewall-cmd --reload
[root@localhost ~]# systemctl start sshd
[root@localhost ~]# systemctl status sshd
이렇게뜨면 합격
'얕고넓은지식 > linux' 카테고리의 다른 글
AMINA+1.8.2+-+G5.3.1.6+-+YC5.3.1.6 (0) | 2021.03.23 |
---|---|
Centos7 phpmyadmin 사용자 추가하려는데 오류가?! centos7 phpmyadmin Your privilege table structure seems... (0) | 2021.03.23 |
phpmyadmin #1862 MySQL 서버에 로그인할 수 없습니다 (0) | 2021.03.23 |
Centos 7 Testing 123.. 계속되면.... (2) | 2021.03.23 |
Centos 7 리눅스 웹서버 구축 ( APM ) 나볼라고 펌 (0) | 2021.03.23 |
Apache(CentOS) 명령어 (0) | 2021.03.22 |
CentOS 7 PHP 7.3 설치 방법 (0) | 2021.03.22 |
CentOS 7.x MySQL 5.7 설치 & Error: Package: akonadi-mysql-1.9.2-4.el7.x86_64 (@anaconda) (0) | 2021.03.22 |
centos7 mysql 비밀번호 초기화 (0) | 2021.03.22 |
mysql 필드에서 특정 기간전 데이터 삭제처리 쿼리 (0) | 2021.02.15 |