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.)
Code:
$ java -versionCode:
$ sudo apt-get install sun-java6-binCode:
$ sudo update-alternatives --config java
select /usr/lib/jvm/java-6-sun/jre/bin/javaNow use phpmyadmin or the terminal to create the database. The following is through the terminal.
Login as root
Code:
$ suCode:
# mysqlCode:
# mysql -u USERNAME -pCode:
# mysql> CREATE DATABASE openfire;Code:
# mysql> exitCode:
# cd /optCode:
# wget http://www.igniterealtime.org/downloadServlet?filename=openfire/openfire_3_3_2.tar.gzCode:
# mv downloadServlet\?filename\=openfire%2Fopenfire_3_3_2.tar.gz openfire_3_3_2.tar.gzCode:
# tar -zxvf openfire_3_3_2.tar.gzCode:
# ln -s /opt/openfire/bin/openfire /etc/init.d/Code:
# chmod +x /etc/init.d/openfireCode:
# update-rc.d openfire defaultsRun the following command or you will get the following error: nohup: appending output to `nohup.out'
Code:
# nohup ls >ls.log 2>&1 &http://localhost:9090
As of January 2007, Java 6 is available for Ubuntu 6.06 LTS via the "backports" repository. You will need to edit your SOURCES.LIST if you intend on using apt-get to install it.
ReplyDeleteThanks for the easy install guide... I just ran through the process and I guess I'll see how it it works out shortly.
ReplyDeleteThanks