View Single Post
  #7  
Old 08-04-2003, 02:54 PM
mistwang mistwang is offline
LiteSpeed Staff
 
Join Date: May 2003
Location: New Jersey
Posts: 7,590
Default change the port for fcgiAdminPHP

Two possible causes:

1. the old admin_php is still running:
use command:
Code:
ps -ef | grep php
to list running php processes, kill them all. and try again, the web server will create new php processes automatically. if it still does not work restart web server.

2. Port 7202 is use by other daemon process.
Use command:
Code:
netstat -an | grep 7202
to check whether port 7202 is used by other application. If it is in use, above command will produce some output. If it is, change the port for admin PHP by editing file
Quote:
lsws/admin/conf/admin_config.xml
search for localhost:7202 and change it to a unused port.

Please post your result.

Mistwang
Reply With Quote