I can't get Apache to listen on a specific IP address.
It's a local web server, not public.
I'm on CentOS 5.11 using Apache 2.2.
The default configuration httpd.conf works great but only listens to the server's static IP address 10.0.0.101:80
.
I appended Listen 10.0.0.103:80
to the end of the httpd.conf but get the error:
Starting httpd: (99)Cannot assign requested address: make_sock: could not bind to address 10.0.0.103:80
I'm following a tutorial on making a high availability cluster which can be seen at https://www.howtoforge.com/high_availability_heartbeat_centos. If I could only get Apache to start on that address, I'd be golden.
I'm using this old version of CentOS because I'm trying to put old hardware to use instead of junking it.
I looked for 4 hours straight on Google, the CentOS site, and Apache's site and found no solution.