How To Install Django On Fedora 9 (Apache2/mod_python)
How To Install Django On Fedora 9 (Apache2/mod_python)Version 1.0 This tutorial explains how to install Django on a Fedora 9 server. Django is a web framework that allows to develop Python web applications quickly with as much automation as possible. I will use it with Apache2 and mod_python in this guide. This howto is meant as a practical guide; it does not cover the theoretical backgrounds. They are treated in a lot of other documents in the web. This document comes without warranty of any kind! I want to say that this is not the only way of setting up such a system. There are many ways of achieving this goal but this is the way I take. I do not issue any guarantee that this will work for you!
1 Install MySQLDjango can use multiple database backends, e.g. PostgreSQL, MySQL, SQLite, etc. If you want to use MySQL, you can install it as follows: yum install mysql mysql-server We create the system startup links for MySQL as follows... chkconfig --levels 235 mysqld on ... and start MySQL: /etc/init.d/mysqld start Run mysqladmin -u root password yourrootsqlpassword to set a password for the user root (otherwise anybody can access your MySQL database!). 2 Install Apache And mod_pythonIf Apache2 and mod_python aren't already installed on your system, you can install them as follows: yum install mod_python (This will also install Apache2 if it isn't already installed.)
3 Install DjangoIn order to install Django and the Python MySQL bindings, we run: yum install Django MySQL-python
4 Configure ApacheBefore we configure Apache, we must create a Django project (e.g. called mysite) (see http://www.djangoproject.com/documentation/tutorial01/). For security reasons I create that project outside my document root (I'm using the default Fedora document root /var/www/html here) (e.g. in /home/mycode): mkdir /home/mycode This will create the directory /home/mycode/mysite with some Python files in it. Now with the project mysite created, we can configure Apache. I create a backup copy of the original /etc/httpd/conf.d/python.conf file and create a new one as follows: cp /etc/httpd/conf.d/python.conf /etc/httpd/conf.d/python.conf_orig
(This configuration is valid for the default Fedora 9 vhost in /var/www/html - if you have already defined other vhosts where you'd like to use Django, please place the <Location ...>...</Location> section in the appropriate vhost configuration, but leave the LoadModule line in /etc/httpd/conf.d/python.conf.) The path in the first line (<Location "/mysite">) refers to the URL - meaning this configuration will be used if you use /mysite in the URL (e.g. http://www.example.com/mysite). You can change this to your likings. Please adjust the other values (SetEnv DJANGO_SETTINGS_MODULE mysite.settings and PythonPath "['/home/mycode'] + sys.path") to the name of your project and the path where it is located. Restart Apache afterwards: /etc/init.d/httpd restart Now you can access http://www.example.com/mysite in a browser. If everything went well, you should see something like this: This means Django has been successfully installed, and you can now use it to develop your Python web applications (please refer to http://www.djangoproject.com/documentation/ to learn how to develop web applications with Django).
5 Connect To A MySQL Database From A Django ProjectIf you want to use a MySQL database in your Django project, you should first create that database (e.g. mysite) and a database user (e.g. mysiteadmin) for that database: mysql -u root -p CREATE DATABASE mysite; Then open the settings.py file in the project folder (e.g. /home/mycode/mysite) and modify the database settings, e.g. as follows: vi /home/mycode/mysite/settings.py
6 Links
|
Join the discussion.
www.seamlessenterprise.com
IP Convergence
Integrate your wireless and wireline networks.
Learn how from the experts at Sprint.
www.seamlessenterprise.com
Wireless & Wireline Integration
Thoughts, strategies and solutions: join the discussion
www.seamlessenterprise.com
Unified Communications 2009
Join the Discussion. Now.
www.seamlessenterprise.com








Recent comments
15 hours 23 min ago
16 hours 52 min ago
20 hours 26 min ago
23 hours 20 min ago
1 day 2 hours ago
1 day 2 hours ago
1 day 3 hours ago
1 day 4 hours ago
1 day 5 hours ago
1 day 5 hours ago