Project

General

Profile

Migrating from Monolithic to Client+Core » History » Version 1

Version 1/9 - Next » - Current version
ChrisH, 04/24/2014 03:42 PM


Migrating from Monolithic to Client+Core

Install The Core

...

Migrate Database

SQLite

  • Windows: %APPDATA%/.quassel-irc.org/quassel-storage.sqlite
  • OS X: ?
  • Linux: ?

PostgreSQL

...

Change Default Login Password

The monolithic client creates a default user called `AdminUser`, with a randomly generated password. The password isn't used in the monolithic client, and there's no way to find out what it is as the password is encrypted in the database. So we need to overwrite it. Run the following command:

  • Windows (x64):
    • Start > Run
    • Type cmd.exe then click ok.
    • Type C:\Program Files (x86)\Quassel\bin\quasselcore.exe --change-userpass=AdminUser then press enter.
    • Follow the instructions to change the password.
  • OS X: ?
  • Linux: quasselcore --change-userpass=AdminUser

For more about managing users, see User Management.

Connect The Client To The Core

...