Page 1 of 1
CentOS 7 with ZM 1.29 - no response from web UI
Posted: Thu Apr 21, 2016 8:43 pm
by VaderPrime
I am new to CentOS and Zoneminder. I have installed and configured CentOS 7 minimal install, and Zoneminder 1.29.0. I followed the instructions in the readme file in /usr/share/doc/zoneminder-1.29.0/README.Centos7. I can ping the IP of the CentOS without issues, but cannot detect port 80 open and cannot open the Web UI at
http://ipaddr/zm. Can someone recommend where to start to track down the issue? Thank you
Re: CentOS 7 with ZM 1.29 - no response from web UI
Posted: Thu Apr 21, 2016 9:08 pm
by bbunge
Firewall
commands:
firewall-cmd --set-default-zone=public
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https
firewall-cmd --reload
Re: CentOS 7 with ZM 1.29 - no response from web UI
Posted: Fri Apr 22, 2016 1:48 am
by knight-of-ni
Bbunge is right.
Think of CentOS and Fedora like you would Windows (I can't believe I just said that). Just like Windows, they ship with the Firewall turned on.
Note that you will need to be root to set the firewall commands bbunge has shown you. Or just turn off the firewall completely:
Code: Select all
sudo systemctl stop firewalld
sudo systemctl disable firewalld
Re: CentOS 7 with ZM 1.29 - no response from web UI
Posted: Fri Apr 22, 2016 12:54 pm
by VaderPrime
bbunge wrote:Firewall
commands:
firewall-cmd --set-default-zone=public
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https
firewall-cmd --reload
Thanks bbunge. That worked perfectly. That makes sense now too knnniggett. I'm guessing it would have worked from the local server before opening up the firewall, but with a min install of CentOS I wasn't sure how to go about trying it. Thanks everyone for the help.