码迷,mamicode.com
首页 > Web开发 > 详细

linux下SVN+apache搭建

时间:2016-06-10 23:24:41      阅读:460      评论:0      收藏:0      [点我收藏+]

标签:linux   local   

下载包
wget http://syslab.comsenz.com/downloads/linux/httpd-2.2.11.tar.gz
wget http://subversion.tigris.org/downloads/subversion-1.5.3.tar.gz

1. 编译apache
tar zxvf httpd-2.2.11.tar.gz
cd  httpd-2.2.11
./configure   --enable-dav --enable-dav-fs --enable-so   --enable-ssl --enable-maintainer-mode -prefix=/usr/local/apache2   --enable-mods-shared=all
make  && make install
问题: 在centos6系统中,如果增加了 --enable-ssl 会一直报错编译不成功,即使我们yum install  openssl-devl 也不行,这是因为centos6中yum安装的openssl版本和httpd-2.2.11所要求的版本不一致,解决办法:下载更新的 httpd(2.4.6没有问题)或者源码编译安装openssl(0.9版本)


2. 编译subversion

tar zxvf  subversion-1.5.3.tar.gz
cd subversion-1.5.3
./configure --prefix=/usr/local/subverion --with-apxs=/usr/local/apache2/bin/apxs --with-apr=/usr/local/src/httpd-2.2.11/srclib/apr/  --with-apr-util=/usr/local/src/httpd-2.2.11/srclib/apr-util --with-ssl
make && make install

3.  添加svn用户
useradd SVN

4. 创建仓库
/usr/local/subverion/bin/svnadmin create /home/SVN/lishiming

5. 测试svn
添加一个文件到仓库   /usr/local/subverion/bin/svn   import    /tmp/disk.txt     file:///home/SVN/lishiming/disk.txt  -m test
其中 命令格式为 svn  import  filename svn仓库路径 -m  说明
查看添加的文件信息  /usr/local/subverion/bin/svn list --verbose file:///home/SVN/lishiming/

6. 整合apache
vim /usr/local/apache2/conf/httpd.conf
在最后面加入
<Location /lishiming>
   DAV svn
   SVNPath /home/SVN/lishiming
   AuthzSVNAccessFile /home/SVN/lishiming/conf/authz.conf
   AuthType Basic
   AuthName "Subversion"
   AuthUserFile /home/SVN/authfile
   Require valid-user
</Location>

另外需要修改一下
User  SVN
Group  SVN


7. 添加认证用户
/usr/local/apache2/bin/htpasswd -c /home/SVN/authfile svntest  

说明:第一次创建这个用户是需要加-c 选项,以后再次创建就不需要了,因为authfile 文件已经存在

8. 编辑用户权限
vim /home/SVN/lishiming/conf/authz.conf   内容如下:
[lishiming:/]
svntest = rw

9. 更改权限
chown -R SVN:SVN /home/SVN/

10. 重启apache
访问 10.0.2.111/lishiming/

本文出自 “王森” 博客,请务必保留此出处http://zhibeiwang.blog.51cto.com/7555525/1787773

linux下SVN+apache搭建

标签:linux   local   

原文地址:http://zhibeiwang.blog.51cto.com/7555525/1787773

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!