[Centos] 방화벽 포트 열기
2015. 8. 28. 16:42ㆍComputer/Server
Use this command to find your active zone(s):
firewall-cmd --get-active-zones
It will say either public, dmz, or something else. You should only apply to the zones required.
In the case of dmz try:
firewall-cmd --zone=dmz --add-port=2888/tcp --permanent
Otherwise, substitute dmz for your zone, for example, if your zone is public:
firewall-cmd --zone=public --add-port=2888/tcp --permanent
Then remember to reload the firewall for changes to take effect.
firewall-cmd --reload
반응형
'Computer > Server' 카테고리의 다른 글
[Node.js] 우분투 14.04 설치 및 설정 (0) | 2015.11.17 |
---|---|
[Jenkins] Yosemite 10.10 에서 Jenkins설치시 유의점 (0) | 2015.11.04 |
[monitorix] 서버 리소스 확인 툴 (0) | 2015.08.28 |
[NodeJs] Socket.io (0) | 2015.08.26 |
[Git] project 별 rsa 키 파일 설정시 (0) | 2015.08.19 |