Description: Learn how to install RED5 on your OS properly with the help of RED5 Installation manuals. Keywords: RED5 Installation manuals
How to install red5 on suse Linux 10.2 (RED5 Installation manuals) Added: 21/11/09 11:26 AM (Four months, forty-nine minutes, forty-seven seconds ago) Rating(0) Viewed(47410)
This howto was provided by Jake Hilton. If you see any errors please let him know so that they can be corrected. This was recently updated to reflect the new version of opensuse which is 10.2. These instructions are generic enough to work on many different linux operating systems.
The following are steps used to get Red5 running on SUSE Linux 10.2. This is the development version of red5.
Before beginning this make sure you are running these commands as root.
# You can create a red5 user to run this under if you dont plan on using any ports below 1000. If you need red5 to bind to ports below 1000 you need to run it as root. With the red5 user disallow login access and make the red5 user part of the root group.
# Make sure you have downloaded and installed the latest JDK from java.sun.com
# For this tutorial just download the .bin file. All you need to do is change the permissions of that bin file to 755 with
#
chmod 755 jdk-1_6_0
and then execute it.
./jdk-1_6_0
or something similar. Then once its done you just copy the contents of the folder it made and put them in /usr/java/jdk1.6.0
# Then set your JAVA_HOME variable. It may have to be set two different ways. First way:
JAVA_HOME=/usr/java/jdk1.6.0
and the second way.
export JAVA_HOME=/usr/java/jdk1.6.0
#
# Install Apache Ant 1.7. You may have to download that as well. Install the binary for it.
# Download and unzip the file. Then copy the contents to a directory, something like /usr/ant. Then set your ANT_HOME variable. If it doesnt work then dont worry about it. We will not be using that pointer in this tutorial.
# Once java and ant are all set up you simply pull the latest trunk for r Read more about: How to install red5 on suse Linux 10.2
How to install red5 on Debian (RED5 Installation manuals) Added: 21/11/09 11:22 AM (Four months, fifty-three minutes, forty-seven seconds ago) Rating(0) Viewed(47627)
How to install red5 on Linux (RED5 Installation manuals) Added: 21/11/09 11:21 AM (Four months, fifty-four minutes, forty-seven seconds ago) Rating(0) Viewed(26828)
This is simple installation instruction. it can be done as unprivileged user (you might want sudo to root for some commands - but you dont really have to - youll just need to provide full length paths) you need to have:
1. subversion (if you want trunk version instead of last stable)
2. java - jdk and sdk
3. ant 1.7 - currently not in debian etch repositories so Im compiling it from source
Install Apache Ant Ant 1.7:
wget http://apache.mirror.transip.nl/ant/binaries/apache-ant-1.7.0-bin.tar.gz
tar -zxf apache-ant-1.7.0-bin.tar.gz
sudo mv apache-ant-1.7.0 /opt/ant # you dont need this
export ANT_HOME=/opt/ant
sudo ln -s /opt/ant/bin/ant /usr/bin/ant # shortcut - you sould now be able to use ant