Direct admin does not open

bahar

Verified User
Joined
Oct 23, 2019
Messages
9
hi

Direct admin does not open
The following are reviewed but the problem remains

update licence
change licence
check error.log
change port
manual update directadmin
disable firewall
check of different location
check hosts & resolve files
check directadmin.conf
disable ssl
ip available
service directadmin running
 
it is a fresh install or it worked before and stopped?
if fresh - do you run last command from setup message?
also you can try to clean iptables.
iptables -F
 
server worked before
iptables -F --> Unresolved
It bad way to reset Iptables

Should use
iptables-save | awk '/^[*]/ { print $1 }
/^:[A-Z]+ [^-]/ { print $1 " ACCEPT" ; }
/COMMIT/ { print $0; }' | iptables-restore

or second way
iptables -P INPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
iptables -t nat -F
iptables -t mangle -F
iptables -F
iptables -X
 
Back
Top