i am getting the error as follows
(98)Address already in use: make_sock: could not bind to address
0.0.0.0:443
no listening sockets available, shutting down
can any one tell whats the problem is ... what i need to do
Not sure with redhat 9.0, but you might be able to use 'netstat -l' to
list the services listening on your box. Look for something listening
on *:https or *:443, that shows there is definitely something bound to
the SSL port already. You might then be able to use the 'lsof' command
(if it comes with RH9) to see what actual program is using it. Try
'lsof -i :443' and that should tell you the process name of what is
listening on that port. From there you'll have to decide whether you
should kill it or whatever.. Good luck!