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??
} kevin.kempter 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??
I don't fully recall, yet doesn't one need to add this to the
/etc/services
File and umm one other place that escapes me at the moment...
- rh
-- Robert - Abba Communications Computers & Internet Sales/Service www.abbacomm.net
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
On Thu, 2005-09-22 at 22:42, 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
Did it work under the same circumstances on 80? Only root can open ports 1024 or lower.
On Thursday 22 September 2005 22:42, 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??
selinux
deactivate selinux to warn doing
# setenforce 0
and try to activate apache again