ZenOSS веб-интерфейс подключения

У меня проблема с ZenOss. Я установил установщик стека Centos на Centos 5.5 x64. Де установка прошла успешно и никаких ошибок там, где отображается. Но когда я попытался перейти на IP-адрес, он не отвечает. Затем я добавил исключение в брандмауэр iptables. Но до сих пор нет ответа. Может кто-нибудь сказать мне, что еще может быть проблема?

Я использовал эти строки для исключения брандмауэра

iptables -A INPUT -p tcp --dport 8080 -j ACCEPT
iptables -A OUTPUT -p tcp --sport 8080 -j ACCEPT

The output of iptables -L

Chain INPUT (policy ACCEPT)
target     prot opt source               destination         
RH-Firewall-1-INPUT  all  --  anywhere             anywhere            
ACCEPT     tcp  --  anywhere             anywhere            tcp dpt:webcache 

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         
RH-Firewall-1-INPUT  all  --  anywhere             anywhere            

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination         
ACCEPT     tcp  --  anywhere             anywhere            tcp spt:webcache 

Chain RH-Firewall-1-INPUT (2 references)
target     prot opt source               destination         
ACCEPT     all  --  anywhere             anywhere            
ACCEPT     icmp --  anywhere             anywhere            icmp any 
ACCEPT     esp  --  anywhere             anywhere            
ACCEPT     ah   --  anywhere             anywhere            
ACCEPT     udp  --  anywhere             224.0.0.251         udp dpt:mdns 
ACCEPT     udp  --  anywhere             anywhere            udp dpt:ipp 
ACCEPT     tcp  --  anywhere             anywhere            tcp dpt:ipp 
ACCEPT     all  --  anywhere             anywhere            state RELATED,ESTABLISHED 
ACCEPT     tcp  --  anywhere             anywhere            state NEW tcp dpt:ssh 
REJECT     all  --  anywhere             anywhere            reject-with icmp-host-prohibited 

1 ответ

iptables -I INPUT 1 -p tcp --dport 8080 -j ACCEPT

или же

iptables -I RH-Firewall-1-INPUT 7 -p tcp --dport 8080 -j ACCEPT

или отредактируйте /etc/sysconfig/iptables

Другие вопросы по тегам