Howto: Install Openfire XMPP Jabber Server on Ubuntu
Take control! Jabber technology enables you to run your own IM service, whether you want to host a public server or keep your messages safely behind the firewall. Thousands of organizations all over the world have freed themselves from legacy IM providers by running their own Jabber servers. Why not join them? Here's how to get started:
Installing openfire
http://www.igniterealtime.org/projec...fire/index.jsp
Install Ubuntu 6.06 LTS LAMP
Recommended sites to setup your LAMP server:
http://www.howtoforge.com/ubuntu_lamp_for_newbies
https://help.ubuntu.com/community/Ap...&redirect=LAMP
Check which version of Java you are running. Note the following: the .tar.gz build does not contain a bundled Java runtime (JRE). Therefore, you must have JDK or JRE 1.5.0 (Java 5) or later installed on your system. You can check your java version by typing "java -version" at the command line and (if necessary) upgrade your Java installation by visiting http://java.sun.com.)$ java -version
$ sudo apt-get install sun-java6-bin
$ sudo update-alternatives --config java
select /usr/lib/jvm/java-6-sun/jre/bin/java
Now use phpmyadmin or the terminal to create the database. The following is through the terminal.
Login as root$ su
# mysql
# mysql -u USERNAME -p
# mysql> CREATE DATABASE openfire;
# mysql> exit
# cd /opt
# wget http://www.igniterealtime.org/downloadServlet?filename=openfire/openfire_3_3_2.tar.gz
# mv downloadServlet\?filename\=openfire%2Fopenfire_3_3_2.tar.gz openfire_3_3_2.tar.gz
# tar -zxvf openfire_3_3_2.tar.gz
# ln -s /opt/openfire/bin/openfire /etc/init.d/
# chmod +x /etc/init.d/openfire
# update-rc.d openfire defaults
Run the following command or you will get the following error: nohup: appending output to `nohup.out'# nohup ls >ls.log 2>&1 &
http://localhost:9090