[root@localhost system]# service firewalld statusFor a quick check disabling the firewall with
Redirecting to /bin/systemctl status firewalld.service
● firewalld.service - firewalld - dynamic firewall daemon
Loaded: loaded (/usr/lib/systemd/system/firewalld.service; enabled; vendor preset: enabled)
Active: active (running) since So 2017-10-01 18:22:30 CEST; 21h ago
Docs: man:firewalld(1)
Main PID: 684 (firewalld)
CGroup: /system.slice/firewalld.service
└─684 /usr/bin/python -Es /usr/sbin/firewalld --nofork --nopid
service firewalld stopmight be ok, but the better way is to allow port 5500.
Therefor check the active zone and the services:
[root@localhost system]# firewall-cmd --get-active-zoneWith this knowlegde you can add port 5500 to your firewall:
public
interfaces: enp0s3
[root@localhost system]# firewall-cmd --zone=public --list-services
ssh dhcpv6-client
[root@localhost system]# firewall-cmd --zone=public --add-port=5500/tcpNow you should get the following:
success
[root@localhost system]# firewall-cmd --permanent --zone=public --add-port=5500/tcp
success
[root@localhost system]# firewall-cmd --zone=public --list-portsand you will get in your Browser by accessing the URL https://hostname:5500/em:
5500/tcp
(still Flash...)
No comments:
Post a Comment