Port 80 neither litespeed nor apache load.

#1
Well on our dedicated server we have, had a recent DdoS which was blocked by our apf firewall and manually. Server after the Ddos actually became faster and after a few hours port 80 went down. We have got Litespeed installed and we don't use apache.
Basically WHM/cpanel and ssh work perfectly. But port 80 doesn't work. Anyone has anyone knows how to fix this?

Code:
Specs : 
Intel C2Q Q9450
8196 MB DDR2 RAM
500 GB 7.200RPM
2000GB Transfer p/m
OS: CentOS 5.2
Code:
Error :
2009-08-28 06:52:41.579 [NOTICE] Your License key will expire in 241 days
2009-08-28 06:52:41.579 [NOTICE] Loading LiteSpeed/3.3.23 Enterprise ...
2009-08-28 06:52:41.579 [NOTICE] [ADMIN] server socket: uds://opt/lsws/admin/tmp/admin.sock.7695
2009-08-28 06:52:41.579 [NOTICE] Loading configuration from /opt/lsws/conf/httpd_config.xml ...
2009-08-28 06:52:41.580 [NOTICE] [config] chroot is disabled.
2009-08-28 06:52:41.580 [INFO] old priority: 0, new priority: 0
2009-08-28 06:52:41.580 [INFO] [config:server:basic] For better obscurity, server version number is hidden in the response header.
2009-08-28 06:52:41.581 [ERROR] [config:admin:listener:adminListener] missing <certFile> in <listener>
2009-08-28 06:52:41.581 [ERROR] [config:admin:listener] No listener is available for admin virtual host!
2009-08-28 06:52:41.581 [ERROR] Fatal error in configuration, exit!
 

auser

Super Moderator
#2
per the error message:

2009-08-28 06:52:41.581 [ERROR] [config:admin:listener:adminListener] missing <certFile> in <listener>
2009-08-28 06:52:41.581 [ERROR] [config:admin:listener] No listener is available for admin virtual host!
2009-08-28 06:52:41.581 [ERROR] Fatal error in configuration, exit!

something wrong in your configuration file.
 
#5
LiteSpeed Web Server Control Operation ... Switch to Apache

Stopped LSWS
Apache is not up within 30 secs, please try again

LiteSpeed is still running! Failed to switch to Apache. Please try again!
 
#7
Code:
<?xml version="1.0" encoding="UTF-8"?>
<adminConfig>
  <enableCoreDump>1</enableCoreDump>
  <sessionTimeout>3600</sessionTimeout>
  <logging>
    <log>
      <useServer>0</useServer>
      <fileName>$VH_ROOT/logs/error.log</fileName>
      <logLevel>INFO</logLevel>
      <rollingSize>10M</rollingSize>
    </log>
    <accessLog>
      <useServer>0</useServer>
      <fileName>$VH_ROOT/logs/access.log</fileName>
      <rollingSize>10M</rollingSize>
      <keepDays>90</keepDays>
    </accessLog>
  </logging>
  <security>
 <accessControl>
      <allow>ALL</allow>
      <deny></deny>
    </accessControl>
  </security>
  <listenerList>
    <listener>
      <name>adminListener</name>
      <address>127.0.0.1:8070</address>
      <binding></binding>
      <secure>1</secure>
      <note></note>
    </listener>
  </listenerList>
</adminConfig>
 

auser

Super Moderator
#8
in
Code:
  <listenerList>
    <listener>
      <name>adminListener</name>
      <address>127.0.0.1:8070</address>
      <binding></binding>
      <secure>1</secure>
      <note></note>
    </listener>
  </listenerList>
change
<secure>1</secure>
to
<secure>0</secure>

see if can start lsws.
 
Last edited:
Top