In this post, I will explain you how to configure Django with PostgreSQL instead of MySQL.

The blue/white elephant logo of the PostgreSQL...

I did several changes locally before deploying my app to heroku and Amazon S3.

I changed my configuration to use postgreSQL instead of mySQL. I did not have any data stored in MySQL, so I reinitiated a brand new database. To do that, I had to come back to django’s tutorial and edit settings.py:

        #'ENGINE': 'django.db.backends.mysql', # USE MYSQL
'ENGINE': 'django.db.backends.postgresql_psycopg2', # USE postgreSQL

Of course, I had to install PostgreSQL and to create the database, end user, and password referenced in my django settings.py according to the tutorial. The installation of psycopg2 through easy_install may lead to various errors such as the ones below:

ImportError: No module named psycopg2.extensions
or
Error: pg_config executable not found.
 

That’s why we include several packages in the first apt-get install directive. These packages solve the above errors.

sudo apt-get update
sudo apt-get install postgresql postgresql-client python-psycopg2 libpq-dev  postgresql-server-dev-all python-dev python-psycopg2 --fix-missing
easy_install psycopg2
sudo adduser MYUSER
sudo su postgres
psql
postgres=# CREATE USER MYUSER WITH PASSWORD 'MYPASSWORD';
postgres=# CREATE DATABASE thenameofmydb;
postgres=# GRANT ALL PRIVILEGES ON DATABASE thenameofmydb to MYUSER;
postgres=# q
exit
sudo vim /etc/postgresql/8.4/main/pg_hba.conf

In this file, check the following configuration directive:


# "local" is for Unix domain socket connections only
local all all trust

Then, we restart psql and log in:


sudo /etc/init.d/postgresql reload
psql -d thenameofmydb -U MYUSER 
 
 
 

Leave a Reply

Your email address will not be published. Required fields are marked *