On Thu, 2005-09-22 at 21:42 -0600, kevin.kempter@dataintellect.com wrote:
Hi LIst;
I would like to bring apache up to listen on an lternate port (like 81 instead of 80) however if I change the listen value in the httpd.conf file then it fails to start saying that :
(13)Permission denied: make_sock: could not bind to address :81
any Ideas??
Is another service already listening on this port? Have you tried this?:
netstat -a -n | grep 81 | grep LISTEN
If you can't start on 81, how about 82? Not that you should have to, but have you tried doing a listen on the particular socket? Instead of just having "Listen 81" have you tried "Listen AAA.BBB.CCC.DDD:81" to see if there is any difference?
HTH, Barry