Project

General

Profile

Build Core On Ubuntu » History » Version 3

Version 2 (miohtama, 05/17/2009 01:26 PM) → Version 3/20 (miohtama, 05/17/2009 01:27 PM)

h1. Building Quassel core with PostgreSQL support on Ubuntu Hardy

These instructions tell how to build the latest quassel core for your Ubuntu 8.04 Hardy Heron server. PostgreSQL database backend will be used instead of the default SQLite backend, since it scales better with many users and much of history.

Make sure repositores are up-to-date
<pre>
sudo apt-get update
</pre>

Install required dependencies and build tools
<pre>
sudo apt-get install git-core postgresql-8.3 qt4-dev-tools libqt4-dev libqt4-sql-psql screen
</pre>

Pull out source codes
<pre>
git clone git://git.quassel-irc.org/quassel.git
</pre>

Build it
<pre>
cd quassel
cmake .
</pre>

Setup PostgreSQL database master user

* "Follow these Ubuntu specific instructions":https://help.ubuntu.com/community/PostgreSQL

Setup quassel PostgreSQL database. The database password will be asked later by the Quassel client configuration wizard.

<pre>
sudo -i
sudo -u postgres psql
postgres=# CREATE USER quassel ENCRYPTED PASSWORD 'somepassword';
CREATE ROLE
postgres=# CREATE DATABASE quassel WITH OWNER quassel ENCODING 'UTF8';
CREATE DATABASE
</pre>

Create SSL certificate:

<pre>
openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout ~/.config/quassel-irc.org/quasselCert.pem -out ~/.config/quassel-irc.org/quasselCert.pem
</pre>

h2. Running Core

"Screen":http://www.debuntu.org/2006/07/04/72-how-to-screen-the-ultimate-admin-tool is a terminal tool which allwos you to leave terminal sessions running background even when you are logged out.

We run quassel in screen so that core keeps running as long as it is killed or the server is restarted

<pre>
screen
cd quassel
./quasselcore
</pre>

Now you can shut down your terminal and the quassel core still keeps running.

Later we can reattach to this screen session to check out the quassel core terminal output to see if there has been any problems. Login in and type:

<pre>
screen -x
</pre>

Now you should how you left your terminal last time you shut it down.

h2. Starting using it

Configuration wizard will guide you through the rest of the setup when you connect to your Quassel core using Quassel client for the first time. Remember to choose PostgreSQL backend instead of SQLite when asked.