Can anyone tell me the procedure to install CollabNet Subversion Edge 4.0.10 on Ubuntu 14.04?
I am new to Ubuntu.
Can anyone tell me the procedure to install CollabNet Subversion Edge 4.0.10 on Ubuntu 14.04?
I am new to Ubuntu.
Here's what I did, step by step:
Installed a "next-next-next" implementation of Ubuntu 14.04 server.
Logged in as root on the console, then ran the following command:
sudo apt-get install openssh-server
Next we create a non-root user. In this example we are using svnadministrator .
sudo adduser svnadministrator
(couple of prompts for this procedure, password/user, detail, etc.)
sudo visudo
Look for---> root ALL=(ALL:ALL) ALL
and then below that put in the entry below:
svnadministrator ALL=(ALL:ALL) ALL
Save your changes.
LOGGED OUT OF ROOT and then log in as the non-root user you created (svnadministrator in this example).
!!!The notes for subversion says to try and do it as a non-root user, so I did.!!!
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
(You can change the "6" to "7" or "8" in the next command, depending on the Java version you want. SVN seemed to want 6)
sudo apt-get install oracle-java6-installer
(Agree to terms.)
sudo apt-get install oracle-java6-set-default
Set the home variable.
export JAVA_HOME=/usr/lib/jvm/java-6-oracle/
Get the installer from http://www.collab.net/svnedge. You'll need to login in and/or create an account.
(I downloaded it to my Windows box then SCP'd it over to my Linux box)
tar -zxf CollabNetSubversionEdge-1.1.0_linux-x86.tar.gz
The tar.gz file is unpacked to the csvn directory.
cd csvn
bin/csvn start
(Wait a minute or so...)
http://192.168.x.x:3343/csvn/login/auth
DONE!
There is a dedicated page hosted by collabnet on this topic.
How ever summarizing the process:
tar -vzxf CollabNetSubversionEdge<your_version>.tar.gz
csvn/bin/csvn start
CollabNetSubversionEdge-4.0.10_linux-x86.tar.gz
. – Ashrumochan Aug 18 '14 at 09:03