Ad Widget

Collapse

Web only available from zabbix

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • wesleyjconnor
    Junior Member
    • Sep 2013
    • 1

    #1

    Web only available from zabbix

    Hi

    New install of zabbix 2.0.8 on CentOs 6.4 64bit.
    Followed instructions as per https://www.zabbix.org/wiki/InstallOnCentOS_RHEL
    ZabbixZone Repository Install

    Zabbix has installed fine and is available from http://localhost/zabbix (collecting information and adding hosts is ok) but I am unable to get to the web interface from an external computer. eg http://(serverip)/zabbix is unavailable.

    Have added exceptions in iptables for web have changed httpd.d from
    Listen 80
    to
    Listen 10.0.0.11:80
    without effect

    NMAP says that the only port listening on the server is ssh

    I sense this isnt a zabbix issue but a configuration for the OS however its a fresh install of centos and it should be blocking anything.

    Any help regarding getting the zabbix website available from any computer on the local network is very welcome

    Thanks
  • Pada
    Senior Member
    • Apr 2012
    • 236

    #2
    run `sudo iptables -L -v -n` and check which ports are allowed (ACCEPT), because typically only incoming SSH connections are allowed.

    You can temporarily add a firewall rule to accept any incoming traffic to port 80 with the following command:
    Code:
    sudo iptables -I INPUT 1 -p tcp -m tcp --dport 80 -m comment --comment HTTP -j ACCEPT

    Comment

    Working...