반응형
방화벽 열려고 아래 명령어 실행 후 FirewallD is not running 에러 발생 시 해결방법
sudo firewall-cmd --add-port=3389/tcp --permanent
# check the status of the service (running and enabled)
systemctl status firewalld
# if the service is not running, start it
systemctl start firewalld
# 에러발생시 Failed to start firewalld.service: Unit is masked.
systemctl unmask firewalld
# if the service has exited, restart it(check for error if any)
systemctl restart firewalld
# if the service is not enabled, enable it
systemctl enable firewalld
전체화면
반응형
'VAS > Centos 7 개발환경 구축' 카테고리의 다른 글
OSError: [Errno 12] Cannot allocate memory 해결방법 crontab 사용 (0) | 2022.06.16 |
---|---|
[SOLVED] redhat 8(RHEL) VLC player installation without any error (0) | 2022.06.14 |
부팅 후에 원하는 쉘스크립트 실행 방법 (0) | 2022.06.09 |
Node.js 로 http 웹서버 구축 및 폴더접근허용 (0) | 2022.03.15 |
CentOS7 sFTP 를 사용하여 폴더 공유, 접속허용, 방화벽(firewall) 포트 여는 방법까지 (0) | 2022.03.10 |
댓글