[root@openfire~]# rpm -ivh openfire-3.7.1-1.i386.rpm Now it's time for database, you can use your desired database like, mssql, oracle etc... i use MySQL for this tutorial. Let's install MySQL thencreate a database named 'openfire' and an user 'admin'. If you want feel difficult with external databases, you can also use the embedded database. [root@openfire~]# yum install mysql-server [root@openfire~]# mysql -u root -p Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> create database openfire; Query OK, 1 row affected (0.00 sec) mysql> create user admin@localhost identified by 'passwd'; Query OK, 0 rows affected (0.00 sec) mysql> grant all on openfire.* to admin@localhost identified by 'passwd'; Query OK, 0 rows affected (0.00 sec) DB has been created just check it by logging in to it with specified user to confirm. [root@openfire~]# mysql -u admin -p ...