Closed Thread
Page 3 of 3 FirstFirst 1 2 3
Results 21 to 23 of 23

Thread: Setting up Subversion on Bluehost

Hybrid View

  1. #1
    Join Date
    Aug 2009
    Posts
    1

    Default How to Set Up Subversion On Bluehost (Easy Way)

    Here is an easier solution for how to set up Subversion (SVN).

    And this one will work for whatever the latest version of Subversion is -- it will automatically find out what versions of the dependendencies (apr, apr-util, neon, etc) to download for you, and build them automatically as part of the Subversion build process (rather than you having to configure/build/install each package individually).

    You need Secure Shell (SSH) access enabled for your Bluehost account, in order to do this.

    1. Go to http://subversion.tigris.org/, and head to the "Source Releases" section. Here you will find what the latest version of Subversion is. At the time of this writing, it is 1.6.4, and the link to download the source code is http://subversion.tigris.org/downloa...-1.6.4.tar.bz2, and the link for all of the dependencies is http://subversion.tigris.org/downloa...-1.6.4.tar.bz2 (note that this is exactly the same URL as that of the sources, with 'deps' inserted between 'subversion' and the version number, 1.6.4).

    2. So with that in mind, log in to your bluehost account via SSH.

    3. Execute the following commands at the shell:

    Code:
    mkdir src
    cd src
    wget http://subversion.tigris.org/downloads/subversion-1.6.4.tar.bz2
    wget http://subversion.tigris.org/downloads/subversion-deps-1.6.4.tar.bz2
    tar -xvjpf  subversion-1.6.4.tar.bz2
    tar -xvjpf  subversion-deps-1.6.4.tar.bz2
    cd subversion-1.6.4
    ./configure --prefix=$HOME --without-berkeley-db --with-ssl LDFLAGS="-L/lib64"
    make
    make install
    Done ... now any other questions you have should be answered in Version Control With Subversion.

    --J. Taylor
    Last edited by felgall; 08-08-2009 at 02:45 PM. Reason: removed reference to sticky thread since I moved it into that thread

Closed Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts