Simple code to install a subversion repository on a linux server

久未见 提交于 2019-12-12 09:09:49

问题


What is the simplest way to install a private subversion repository on a Linux server - specifically a bluehost shared server?

Apache version 2.2.13 (Unix)

PHP version 5.2.9

Architecture x86_64

Operating system Linux

Commands welcome....


回答1:


As wcoenen pointed out, this should be on serverfault.com and the answer I was looking for is the accepted answer at https://serverfault.com/questions/59783/simple-code-to-install-a-subversion-repository-on-a-linux-server/

I found a great solution at http://www.bluehostforum.com/showthread.php?s=855d68319128c0db09b4d88e844287c0&t=12099&page=3 except the most recent version right now is 1.6.5

mkdir src
cd src
wget http://subversion.tigris.org/downloads/subversion-1.6.5.tar.bz2
wget http://subversion.tigris.org/downloads/subversion-deps-1.6.5.tar.bz2
tar -xvjpf  subversion-1.6.5.tar.bz2
tar -xvjpf  subversion-deps-1.6.5.tar.bz2
cd subversion-1.6.5
./configure --prefix=$HOME --without-berkeley-db --with-ssl LDFLAGS="-L/lib64"
make
make install


来源:https://stackoverflow.com/questions/1338484/simple-code-to-install-a-subversion-repository-on-a-linux-server

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!