CentOS 6.5 as WebServer for Django Dev
- by Charlesliam
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?