Skip to content

Installation

Boldin Igor edited this page Aug 2, 2019 · 25 revisions

Xabber server installation

Download last stable Xabber server installer:

wget https://www.xabber.com/xabberserver/releases/xabberserver_installer.bin

Make installer executable:

chmod +x xabberserver_installer.bin

Run installer from user:

./xabberserver_installer.bin

Or install Xabber server as a superuser:

sudo ./xabberserver_installer.bin

If Xabber server installation process started without root permission, files unpacks into your home directory. Other installation steps performed at web console, placed on address http://yourdomain.com:8000 or http://your_server_ip:8000

PostgreSQL installation

Xabber server use Postgresql database.

sudo apt-get update

sudo apt-get install postgresql postgresql-contrib

Prepare database

Login as postgres user:

sudo -i -u postgres

Create user:

createuser -P xabber_server_user

Create database:

createdb xabber_server_db -O xabber_server_user

Contents

Clone this wiki locally