Cannot Access Web Admin

Fez

New Member
#1
Hey guys,

I have a vps that is running the latest version of CentOS + Cpanel and Apache.(Ksplice is also installed). I recently read about litespeed and decided that I should install it. I downloaded the latest standard edition version 4.0.19 and proceeded with the install as normal. I installed it as root and after the install I stopped the apache service and disabled it from being automatically restart. Now my problem is that I cannot get to the admin panel by using http://myip:7080. I made sure the port was the same as that. I wasn't able to set the port to 80 during install as it was already being used but I figured that the settings would be imported from httpdconf later on.

Can anyone guide me here please? :)
 

Fez

New Member
#3
Code:
root@webserver [~]# netstat -ntpl | grep litespeed
tcp        0      0 0.0.0.0:7080                0.0.0.0:*                   LIST                          EN      14624/litespeed (ls
tcp        0      0 0.0.0.0:8088                0.0.0.0:*                   LIST                          EN      14624/litespeed (ls
Why's it showing the IP as 0.0.0.0 :S!
 
Last edited:

webizen

Well-Known Member
#4
0.0.0.0 means all the available IP(s) on your server. e.g. if your server have multiple IPs assigned, you can access admin console via any_of_the_IPs:7080.

Since the service is running, you need to check whether your firewall(local or ISP) blocks the access.
 

Fez

New Member
#5
I am using config server firewall is there any chance that it's not compatible?
Edit:-
It's working now. You were right! Thanks a lot :)
 
Last edited:

webizen

Well-Known Member
#6
You can test from the server itself to see any response.
telnet localhost 7080

csf is basically iptables. You need to add "7080" in the TCP_IN (allow incoming TCP ports) or whitelist your source IP to get access.
 
Top