Project

General

Profile

PostgreSQL » History » Version 7

pennywise, 05/28/2009 03:59 PM

1 1 sph
h1. PostgreSQL
2 1 sph
3 1 sph
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. 
4 1 sph
5 6 sph
For now, this is only supported in git builds.
6 6 sph
7 1 sph
Also make sure you have the qt4-pgsql plugin installed, otherwise Quassel will not support the PostgreSQL backend.
8 1 sph
9 1 sph
h2. Preparing the database
10 1 sph
11 1 sph
We will assume you installed PostgreSQL and properly ran the initdb script.
12 1 sph
13 1 sph
Login using the database account (in my case pgsql)
14 1 sph
> <pre># su pgsql</pre>
15 1 sph
16 1 sph
Now let's create the quassel database and assign an account.
17 2 EgS
> <pre>$ psql
18 2 EgS
postgres=# CREATE USER quassel ENCRYPTED PASSWORD 'somepassword';
19 2 EgS
CREATE ROLE
20 2 EgS
postgres=# CREATE DATABASE quassel WITH OWNER quassel ENCODING 'UTF8';
21 2 EgS
CREATE DATABASE
22 1 sph
</pre>
23 1 sph
24 7 pennywise
h3. Gentoo specific
25 7 pennywise
26 7 pennywise
Read http://www.gentoo.org/doc/en/postgres-howto.xml if no postgresql-server is installed.
27 7 pennywise
To create an user and a database, just use the following:
28 7 pennywise
<pre>createuser -A -D -P -E -U postgres -W quassel
29 7 pennywise
createdb -U postgres -O quassel -E UTF8 quassel</pre>
30 7 pennywise
31 1 sph
h2. Setting up the Quassel Core
32 1 sph
33 1 sph
Now that the database is running properly, we are going to tell Quassel to use the correct backend.
34 1 sph
Use one of the two steps below and you're done!
35 1 sph
36 1 sph
h3. For a new core
37 1 sph
38 2 EgS
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.
39 1 sph
40 1 sph
h3. To migrate an existing core
41 1 sph
42 5 sph
Make sure the core is not running and then execute the following:
43 4 sph
44 3 EgS
> <pre>$ quasselcore --select-backend=PostgreSQL</pre>
45 1 sph
46 1 sph
An interactive script will request the necessary information to migrate successfully.