Last active
May 10, 2018 15:21
-
-
Save niraj-shah/e1d7ce770830cf8fb321555ee9ccd3e0 to your computer and use it in GitHub Desktop.
SVN Setup on EasyApache4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# move to home directory | |
cd ~/ | |
# download svn source | |
wget https://archive.apache.org/dist/subversion/subversion-1.7.14.tar.bz2 | |
# extract source | |
tar -xzvf subversion-1.7.14.tar.bz2 | |
# enter extracted directory | |
cd subversion-1.7.14 | |
# configure svn | |
./configure --with-apr=/opt/cpanel/ea-apr16/bin/apr-1-config --with-apr-util=/opt/cpanel/ea-apr16/bin/apu-1-config --with-apxs=/usr/bin/apxs --with-neon=/usr/local | |
# make and install | |
make && make install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# enable the svn apache modules | |
LoadModule dav_svn_module /usr/lib64/apache2/modules/mod_dav_svn.so | |
LoadModule authz_svn_module /usr/lib64/apache2/modules/mod_authz_svn.so |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# run as root | |
yum install ea-apache24-devel subversion |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# find installed svn apache modules | |
httpd -M | grep svn |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment