Pra fechar o ano, vou postar a Instalação Openfire com MySQL Debian 9.3
# Projetohttps://www.igniterealtime.org/projects/openfire/documentation.jsp
# Database Guidehttp://download.igniterealtime.org/openfire/docs/latest/documentation/database.html
# CenarioIP_LAN: 192.168.254.200
HOST : openfire
DOMAIN: dominio.local
# Apache && OpenSSLapt install apache2 openssl
# MySQLecho -e "deb http://repo.mysql.com/apt/debian/ stretch mysql-5.7\ndeb-src http://repo.mysql.com/apt/debian/ stretch mysql-5.7" > /etc/apt/sources.list.d/mysql.list
wget -O /tmp/RPM-GPG-KEY-mysql https://repo.mysql.com/RPM-GPG-KEY-mysql
apt-key add /tmp/RPM-GPG-KEY-mysql
apt update
apt install mysql-server
# PHPapt install php php-mysql
# Javaapt install openjdk-8-jre
# CREATE databasemysql -u root -p
CREATE DATABASE openfire;
GRANT ALL PRIVILEGES ON openfire.* TO 'openfire'@'localhost' IDENTIFIED BY 'sua_senha';
FLUSH PRIVILEGES;
# Download Ultima versaocd /opt ; wget -c https://www.igniterealtime.org/downloadServlet?filename=openfire/openfire_4.2.1_all.deb
# Instalacaodpkg -i /home/suporte/openfire_4.2.1_all.deb
# Configurando o Openfirehttp://seu_servidor:9090
Basta seguir o GUI de instalação, mas é bem intuitivo.