Tuesday, November 1, 2011

Easy steps for installing SVN server in Solaris 10(X86)

Hi Guys,

Here is the few Simple Steps for installing SVN Subversion server in Solaris 10 Box

Download below List of packages from here

neon-0.29.5,apache-2.2.17,swig-1.3.40,expat-2.0.1,db-4.2.52.NC,libxml2-2.7.7,
openssl-1.0.0c,libiconv-1.13.1,libintl,sasl,openldap,zlib-1.2.5,libgcc-3.4.6 ,subversion-1.6.12

I placed all Downloaded Software in /export/home (Unzip it too)
Install all above mentioned software using pkgadd -d (Package name)-Finally installed subversion package

Test Apache status

Go to /usr/local/apache2/bin and type ./apachectl start and it gives Apache already running

Go to Browser http://localhost:80/-->it gives it works!!!( So Apache part completed)

Now SVN setup

#mkdir /dev/svn/repo
#groupadd svn
#useradd -c "svn owner" -d /dev/svn -g svn svnadmin
#chown -R svnadmin:svn /dev/svn
#chmod -R g+w /dev/svn

Go to #cd /usr/local/bin

#./svnadmin create --fs-type fsfs /dev/svn/repo/firstproject

If you are able to Create Project that means now you are all set with SVN Installation Part....


Regards,

Vivek