View Single Post
  #5  
Old 01-19-2012, 12:41 AM
justme justme is offline
Member
 
Join Date: Feb 2008
Posts: 35
Quote:
Originally Posted by NiteWave View Post
is there another process already listen to port 80 ?

please run
#netstat -ntlp
Before restart:
Code:
# netstat -nlpt|grep ":80"
tcp6       0      0 :::80                   :::*                    LISTEN      9852/litespeed (lsh
After restart:
Code:
# netstat -nlpt|grep ":80"
tcp6       0      0 :::80                   :::*                    LISTEN      9852/litespeed (lsh
# netstat -nlpt|grep ":443 "
tcp        0      0 188.165.55.67:443       0.0.0.0:*               LISTEN      9852/litespeed (lsh
tcp        0      0 87.98.157.151:443       0.0.0.0:*               LISTEN      9852/litespeed (lsh
And 443 is OK, 80 is not.

After a couple minutes, another graceful fixes port 80:
Code:
# netstat -nlpt|grep ":443 "
tcp        0      0 188.165.55.67:443       0.0.0.0:*               LISTEN      24034/litespeed (ls
tcp        0      0 87.98.157.151:443       0.0.0.0:*               LISTEN      24034/litespeed (ls
# netstat -nlpt|grep ":80 "
tcp6       0      0 :::80                   :::*                    LISTEN      24034/litespeed (ls
Reply With Quote