Hi,
You may also use
netstat -an | grep -i list
to see if port 80 is already in use
I am not sure which solaris version you have, but you can use lsof to find which process is using port 80 and then kill it.
lsof -i :80
For more info about lsof please see:
http://www.hmug.org/man/8/
If lsof is not installed on your server then you may download it from sunfreeware.com
Main Topics
Browse All Topics





by: omarfaridPosted on 2007-12-12 at 10:03:07ID: 20458741
This means that the port the web server is trying to use or bind to is already taken or used by another process. This means you need to stop the web server and restart it. Look for web processes that may still running and kill it.