V vNabi Verified User Joined Apr 26, 2012 Messages 5 Apr 26, 2012 #1 I updated my CentOS from 5.7 to 5.8 and now the DirectAdmin is not working. It's not accessible from 2222 port. What should I do?
I updated my CentOS from 5.7 to 5.8 and now the DirectAdmin is not working. It's not accessible from 2222 port. What should I do?
SeLLeRoNe Super Moderator Joined Oct 9, 2004 Messages 6,632 Location A Coruña, Spain Apr 26, 2012 #2 Try restart it: Code: /etc/init.d/directadmin restart If restart is OK but you still cant access check if is listening on the 2222 port: Code: netstat -ant | grep :2222 If it is listening (something like 0.0.0.0:2222 so check if is your firewall. Regards
Try restart it: Code: /etc/init.d/directadmin restart If restart is OK but you still cant access check if is listening on the 2222 port: Code: netstat -ant | grep :2222 If it is listening (something like 0.0.0.0:2222 so check if is your firewall. Regards
V vNabi Verified User Joined Apr 26, 2012 Messages 5 Apr 26, 2012 #3 it's not listening! I did that, there is nothing in result of netstat command.
D ditto Verified User Joined Apr 27, 2009 Messages 2,348 Apr 26, 2012 #4 Maybe try this: Code: /sbin/service iptables stop /sbin/chkconfig iptables off Please read this: http://help.directadmin.com/item.php?id=75
Maybe try this: Code: /sbin/service iptables stop /sbin/chkconfig iptables off Please read this: http://help.directadmin.com/item.php?id=75
V vNabi Verified User Joined Apr 26, 2012 Messages 5 Apr 26, 2012 #5 Solved! I had removed eth0 and added another one, but I has forgotten to change the directadmin.conf file. I changed ethernet_dev=eth0 line and it solved the problem. Thanks a lot!
Solved! I had removed eth0 and added another one, but I has forgotten to change the directadmin.conf file. I changed ethernet_dev=eth0 line and it solved the problem. Thanks a lot!
SeLLeRoNe Super Moderator Joined Oct 9, 2004 Messages 6,632 Location A Coruña, Spain Apr 26, 2012 #6 Oh ok Nice your solved your issue. Regards