DEV Community

Cover image for How to Install Openfire XMPP Server on Ubuntu
HostnExtra Technologies
HostnExtra Technologies

Posted on

How to Install Openfire XMPP Server on Ubuntu

In this article, we'll explain how to install Openfire XMPP Server on Ubuntu 20.04.

Openfire is a powerful instant messaging (IM) and chat server that implements the XMPP protocol. It is a real time collaboration (RTC) server licensed under the Open Source Apache License. This guide will help you to install Openfire XMPP Server on Ubuntu 20.04 server.

Prerequisites

  • A Ubuntu installed dedicated server or KVM VPS.
  • A root user access or normal user with administrative privileges.

Install Openfire XMPP Server on Ubuntu

Step 1 - Keep the server updated

# apt update -y && apt upgrade -y
Enter fullscreen mode Exit fullscreen mode

Step 2 - Install Java

As a Java applet, Openfire requires Java Runtime Environment 1.7 or later. Following command Install OpenJDK 11 Java Runtime Environment openjdk-11-jre:

# apt install openjdk-11-jre -y
Enter fullscreen mode Exit fullscreen mode

We need to setup the JAVA_HOME environment variable:

# echo "JAVA_HOME=$(readlink -f /usr/bin/java | sed "s:bin/java::")" | sudo tee -a /etc/profile
# source /etc/profile
Enter fullscreen mode Exit fullscreen mode

Step 3 - Install latest Openfire

To install Openfire we need to download Debian package from official page. On the official Openfire download page, find the direct download URL pointing to the latest stable release of the Openfire Debian package.

First download Debian package using following command:

# cd /tmp

# wget -O openfire_4.6.2_all.deb https://www.igniterealtime.org/downloadServlet?filename=openfire/openfire_4.6.2_all.deb
Enter fullscreen mode Exit fullscreen mode

Now, install Openfire using following command:

# apt install /tmp/openfire_4.6.2_all.deb -y
Enter fullscreen mode Exit fullscreen mode

Openfire will be installed in the /var/lib/openfire directory.

Step 4 - Install MariaDB database for Openfire

This is a optional step. Openfire has a embedded database but for better performance we can install MariaDB database and use it.

# curl -sS https://downloads.mariadb.com/MariaDB/mariadb_repo_setup | sudo bash
# sudo apt install mariadb-server mariadb-client -y
Enter fullscreen mode Exit fullscreen mode

Secure the installation of MariaDB:

# mysql_secure_installation
Enter fullscreen mode Exit fullscreen mode

When prompted, answer the questions as follows:

  • Enter current password for root (enter for none): Just press ENTER
  • Set root password? [Y/n]: Y
  • New password: your-MariaDB-root-password
  • Re-enter new password: your-MariaDB-root-password
  • Remove anonymous users? [Y/n]: Y
  • Disallow root login remotely? [Y/n]: Y
  • Remove test database and access to it? [Y/n]: Y
  • Reload privilege tables now? [Y/n]: Y

Create a dedicated database for Openfire using the MySQL shell:

# mysql -u root -p
Enter fullscreen mode Exit fullscreen mode

In the MySQL shell, use the following commands to create a database, openfire.

CREATE DATABASE openfire;
CREATE USER 'openfireuser'@'localhost' IDENTIFIED BY 'yourpassword';
GRANT ALL PRIVILEGES ON openfire.* TO 'openfireuser'@'localhost' IDENTIFIED BY 'yourpassword' WITH GRANT OPTION;
FLUSH PRIVILEGES;
EXIT;
Enter fullscreen mode Exit fullscreen mode

Note: replace openfireuser and youpassword with you choice.

Configure firewall

Assuming that you are using UFW as a firewall. Use following command to add Openfire port:

# ufw allow 9090
Enter fullscreen mode Exit fullscreen mode

Next, navigate to your browser and open http://[server_IP]:9090 to start the setup process.

Alt Text

Follow the setup wizard and on Database Settings, select Standard Connection leaving other options untouched, and then click the "Continue" button.

Database Driver Presets: MySQL
JDBC Driver Class: com.mysql.jdbc.Driver
Database URL: jdbc:mysql://localhost:3306/openfire?rewriteBatchedStatements=true
Username: openfireuser
Password: yourpassword
Enter fullscreen mode Exit fullscreen mode

Note: Replace openfireuser and youpassword with your credentials.

On the "Administrator Account" page, input the admin email address admin@example.com and a new password twice, and then click the "Continue" button. If you click the "Skip This Step" button, you will have to use the default password admin.

That's it. The installation has been completed successfully.

Top comments (0)