I have an ubuntu 10.4 installation with apache2 running by default in port 80. I want gae to respond to that address instead of apache. I have changed the conf files for apache in order to use another port but still the 80 port gets bind to it. Despite if I stop apache /etc/init.d/apache2 stop still getting responses from the port. Am I missing something?
|
feedback
|
|
Find who use 80 port
Kill it:
| |||||||||
feedback
|
|
Stop Apache if you still want it to run on 80:
Then run GAE as sudo using python 2.5:
This works great for me as i often use apache on 80 as well so i can switch between the two when required. | |||
|
feedback
|
Listen 80? Or have you just changedListen 80toListen 8500? If you have noListen 80in your/etc/apache2/ports.confthen some other app is listening on that port. – Casual Coder Oct 2 '10 at 12:35