If you ever need to serve a web site for, let’s say a presentation, on a local address and need to connect to another computer…perhaps your database/ Web Objects server locally as well, and you are running Mac OS X…then I have some information for you.
- If you want to serve the web site on 10.0.0.2 and have your other server on 10.0.0.3, open the terminal and type in: sudo ifconfig en0 10.0.0.2. This will change the IP address. (changing the IP address in the network control panel was not enough)
- Next, edit the apache conf file:
sudo pico /etc/httpd/httpd.conf
and addListen 10.0.0.2:80
and then restart apache
Now you can serve 10.0.0.2 on your local machine and connect to a computer on your local network. (connected by an ethernet cable)