Quickly install Java, Ant, Ivy and Red5 Flash server in Linux
Although the Red5 installation guide is there and simple but they only explained how to install it in Ubuntu. I am documenting here the steps I took to install it in CentOS 5.4 server and worked like charm. It should be more or less similar in any Redhat based distro.
Step 1. Install openjdk through yum:
$ yum install java-1.6.0-openjdk java-1.6.0-openjdk-develStep 2. Download the binary version of ant. I got it from here:
$ cd /usr/src $ wget http://apache.opensourceresources.org//ant/binaries/apache-ant-1.8.2-bin.tar.gz $ tar xzf apache-ant-1.8.2-bin.tar.gz $ cd apache-ant-1.8.2
Step 3. After inflating the compressed file, you will get all binary contents of ant. You can now copy/move bin and lib directories to any location to access ant. I’m creating a directory here and copying these directories there.