:2222 and hosted sites timing out

Sapient

Verified User
Joined
Apr 28, 2009
Messages
5
Hi all,

I have had to restart my server, but ran into a major problem. Upon restart, I was unable to get into the DA panel or any of the hosted sites.

I was not doing anything strange before rebooting, simply adding some domains.

I have run the set_permissions script, and service directadmin restart to no avail.

Any help would be greatly appreciated as my client is wondering where his websites are.

Thanks

Edit: I should mention, I have only been using DA for a few days, so still quite a noob.
 
Last edited:
The Installation was a standard CentOS 5.2 install, so as far as I know, it shouldnt have anything fancier than IPTables.

There are also no strange rules and I am still able to get in via SSH.

Thanks for the reply!
 
The default iptables rules block almost everything.

What is the output of:
Code:
iptables -L -n
 
This is the output, I guess I never really considered that it could break between reboots since all was working fine before.

Code:
Chain INPUT (policy ACCEPT)
target     prot opt source               destination         
RH-Firewall-1-INPUT  all  --  0.0.0.0/0            0.0.0.0/0           

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

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination         

Chain RH-Firewall-1-INPUT (2 references)
target     prot opt source               destination         
ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0           
ACCEPT     icmp --  0.0.0.0/0            0.0.0.0/0           icmp type 255 
ACCEPT     esp  --  0.0.0.0/0            0.0.0.0/0           
ACCEPT     ah   --  0.0.0.0/0            0.0.0.0/0           
ACCEPT     udp  --  0.0.0.0/0            224.0.0.251         udp dpt:5353 
ACCEPT     udp  --  0.0.0.0/0            0.0.0.0/0           udp dpt:631 
ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0           tcp dpt:631 
ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0           state RELATED,ESTABLISHED 
ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0           state NEW tcp dpt:22 
REJECT     all  --  0.0.0.0/0            0.0.0.0/0           reject-with icmp-host-prohibited
 
So I guess you need to learn how to set up a proper firewall.
 
Back
Top