Project

General

Profile

PostgreSQL » History » Version 3

Version 2 (EgS, 03/09/2009 08:13 PM) → Version 3/27 (EgS, 03/12/2009 06:51 PM)

h1. PostgreSQL

This article describes how you can use Quassel with the PostgreSQL database. It is written from a FreeBSD point of view, but the process should be very similar for any other system out there.

Also make sure you have the qt4-pgsql plugin installed, otherwise Quassel will not support the PostgreSQL backend.

h2. Preparing the database

We will assume you installed PostgreSQL and properly ran the initdb script.

Login using the database account (in my case pgsql)
> <pre># su pgsql</pre>

Now let's create the quassel database and assign an account.
> <pre>$ psql
postgres=# CREATE USER quassel ENCRYPTED PASSWORD 'somepassword';
CREATE ROLE
postgres=# CREATE DATABASE quassel WITH OWNER quassel ENCODING 'UTF8';
CREATE DATABASE
</pre>

h2. Setting up the Quassel Core

Now that the database is running properly, we are going to tell Quassel to use the correct backend.
Use one of the two steps below and you're done!

h3. For a new core

Just connect to the core using a Quassel Client to launch the first run wizard. Select the PostgreSQL backend in the dropdown list and fill in the needed credentials to connect to the Postgres DB you just created.

h3. To migrate an existing core

> <pre>$ quasselcore --select-backend=PostgreSQL</pre> --migrate-backend=PostgreSQL</pre>

An interactive script will request the necessary information to migrate successfully.