CentOS 6.5 as WebServer for Django Dev
Posted
by
Charlesliam
on Server Fault
See other posts from Server Fault
or by Charlesliam
Published on 2014-06-03T04:48:45Z
Indexed on
2014/06/03
9:27 UTC
Read the original article
Hit count: 391
During CentOS 6.5 Installation I choose WebServer type for this computer. The server has a static IP address 192.168.111.100. The CentOS was updated
I managed to install virtualenv with Python 2.7. Within the virtualenv, I'll be using Django Framework.
After I tried to run the command using root user
python manage.py runserver 0.0.0.0:8000
I can't see the website from other computer within the LAN when I try to type
192.168.111.100:8000/admin
on my browser.
I already disable firewall using
service iptables stop
I can ping the 192.168.111.100 and I have a good feedback with nslookup.
What seems the problem of my config?
© Server Fault or respective owner