I cant access my Directadmin

redleon80

Verified User
Joined
Mar 7, 2011
Messages
11
I cant access my directadmin (www.domainname.com:2222) panel. I checked directadmin with ssh.

I gave this command:

Code:
cd /usr/local/directadmin
./directadmin b200

result:

Code:
Bind Error: Make sure there arent't any copies running in the background. Address already in use

I looked at error.log. But there was no text in that file. Is this an attack? What can I do now???
 
I gave additional command

I gave additional command:
Code:
lsof -i :2222

it gave:
Code:
directadm 2452 nobody    0u  IPv6   5168      0t0  TCP *:rockwell-csp2 (LISTEN)
directadm 2463 nobody    0u  IPv6   5168      0t0  TCP *:rockwell-csp2 (LISTEN)
directadm 2464 nobody    0u  IPv6   5168      0t0  TCP *:rockwell-csp2 (LISTEN)
directadm 2465 nobody    0u  IPv6   5168      0t0  TCP *:rockwell-csp2 (LISTEN)
directadm 2466 nobody    0u  IPv6   5168      0t0  TCP *:rockwell-csp2 (LISTEN)
directadm 2467 nobody    0u  IPv6   5168      0t0  TCP *:rockwell-csp2 (LISTEN)
 
I stopped IPTables. Why I need opening a port? And how can I open a port? :)
I used shorewall and looked at rules file. There is no rule it that file.
 
Thx @chatwizrd.

I added these line into iptables file but the problem is same:

-A INPUT -p tcp -m tcp --dport 2222 -j ACCEPT

I think this is a kind of attack
 
If you can collect on localhost the problem is most likely with firewalling. Have you tested with your firewall turned off?

If you still can't connect with your firewall turned off, then post your real domain name, so we can test it from here.

Jeff
 
What is rockwell-csp2 Is that an application or something like that.

It is mapping the name to whatever is listed in /etc/services

Code:
grep 2222 /etc/services

You could edit /etc/services and just change it to say:

Code:
directadmin 2222/tcp
 
Same issue on fresh install.

There is no firewall and I've done nothing but run the install script on a fresh centos 6 64bit OS. Well, I did reboot to see if that would fix it, but I too cannot access my da install.
 
Are you sure your ISP is not blocking poer number 2222 ? Could be related to ISP if everything is fine on server firewall.

Cheers !!!
 
Back
Top