`

CentOS 5.6 + Apache + SVN

    博客分类:
  • SVN
 
阅读更多

http://wiki.centos.org/zh/HowTos/Subversion

http://wiki.centos.org/HowTos/Subversion

1、检查系统是否安装了httpd

rpm -qa httpd

如果没有,使用下面命令安装

yum install httpd

启动apache

service httpd start

访问http://localhost

如果看到下面信息,则说明安装成功

Apache 2 Test Page
powered by CentOS

 

2、yum install subversion apr apr-util

如果系统是64位的,则安装64位的subversion即可。安装完成后查看是否安装成功

[root@cnn001 ~]# svnserve --version
svnserve, version 1.6.11 (r934486)
   compiled May 14 2012, 05:36:18

Copyright (C) 2000-2009 CollabNet.
Subversion is open source software, see http://subversion.tigris.org/
This product includes software developed by CollabNet (http://www.Collab.Net/).

The following repository back-end (FS) modules are available:

* fs_base : Module for working with a Berkeley DB repository.
* fs_fs : Module for working with a plain file (FSFS) repository.

Cyrus SASL authentication is available.

 

创建版本存放目录

[root@cnn001 ~]# mkdir -p /svn/repos

创建版本仓库

[root@cnn001 ~]# svnadmin create /svn/repos

查看仓库信息
[root@cnn001 ~]# ls /svn/repos/
conf  db  format  hooks  locks  README.txt

修改目录权限,否则无法导入项目

[root@cnn001 ~]# chown -R apache.apache /svn/repos

 

配置apache,在subversion.conf最后添加如下内容:

[root@cnn001 conf]# vim /etc/httpd/conf.d/subversion.conf 

<Location /svn>
DAV svn
SVNPath /svn/repos
AuthType Basic
AuthName "Subversion"
AuthUserFile /etc/httpd/conf.d/passwd
AuthzSVNAccessFile /etc/httpd/conf.d/authz(可以不要)
Require valid-user
</Location>

 

配置passwd文件

[root@cnn001 conf.d]# htpasswd -cm passwd v_jazheng
New password:
Re-type new password:
Adding password for user v_jazheng
[root@cnn001 conf.d]# htpasswd -m passwd svnadmin
New password:
Re-type new password:
Adding password for user svnadmin

 

重启httpd服务,出现以下错误:

[root@cnn001 conf]# service httpd restart

Starting httpd: Syntax error on line 993 of /etc/httpd/conf/httpd.conf:
Unknown DAV provider: svn

 

这是因为系统没有安装mod_dav_svn,它是Subversion与Apache之间的接口(通过它,Apache就可以访问版本库,可以让客户端也使用HTTP的扩展协议 WebDAV/DeltaV进行访问)

[root@cnn001 conf]# yum install mod_dav_svn

 

[root@cnn001 conf]# ls /etc/httpd/modules/ | grep svn
mod_authz_svn.so
mod_dav_svn.so

  

使用本地文件系统把/ta_parser项目导入到svn

[root@cnn001 ta_parser]# svn import /ta_parser http://svn/repos/tap/ta_parser -m "the tap parser project"
Adding         /ta_parser/HelloWorld.java

Committed revision 1.

 

(如果使用apache作为svn协议,以下配置可以省略) 

修改svn配置文件
[root@cnn001 conf]# pwd
/svn/repos/conf

[root@cnn001 conf]# vim svnserve.conf

[general]
anon-access = none
auth-access = write
password-db = passwd
authz-db = authz

 

[root@cnn001 conf]# vim authz

[groups]
hadoop = v_jazheng,v_jazhou
admin = svnadmin


[/]
* = r
@admin = rw


[ta_parser:/]
@hadoop = rw

 

[root@cnn001 conf]# vim passwd

[users]
v_jazheng = 123456
v_jazhou = 123456
svnadmin = 123456

 

启动svnserve
[root@cnn001 ~]# svnserve -d -r /svn/project

查看启动是否成功

[root@cnn001 ~]# ps -ef|grep svnserve
root      2430     1  0 23:39 ?        00:00:00 svnserve -d -r /svn/repos
root      2434  2278  0 23:40 pts/1    00:00:00 grep svnserve

 

[root@cnn001 ~]# svn co svn://cnn001/tap/ta_parser
Authentication realm: <svn://cnn001:3690> 343561b3-335f-46b2-803b-3728b66d7673
Password for 'root':
Authentication realm: <svn://cnn001:3690> 343561b3-335f-46b2-803b-3728b66d7673
Username: v_jazheng
Password for 'v_jazheng':

-----------------------------------------------------------------------
ATTENTION!  Your password for authentication realm:

   <svn://cnn001:3690> 343561b3-335f-46b2-803b-3728b66d7673

can only be stored to disk unencrypted!  You are advised to configure
your system so that Subversion can store passwords encrypted, if
possible.  See the documentation for details.

You can avoid future appearances of this warning by setting the value
of the 'store-plaintext-passwords' option to either 'yes' or 'no' in
'/root/.subversion/servers'.
-----------------------------------------------------------------------
Store password unencrypted (yes/no)? yes
A    ta_parser/HelloWorld.java
Checked out revision 1.

 

此时,在当前目录下check out ta_parser项目
[root@cnn001 ta_parser]# pwd
/root/ta_parser

[root@cnn001 ta_parser]# ls -a
.  ..  HelloWorld.java  .svn

  

在浏览器中访问http://10.0.30.245/svn/tap/ta_parser,成功!

 

顺便说一下:如何在eclipse中删除svn密码,只要移除目录~/.subversion/auth/svn.simple下面的文件即可。

分享到:
评论

相关推荐

    CentOS7下源码编译配置Apache2.4+MySQL5.6+PHP71

    在本文中,我们将深入探讨如何在CentOS 7操作系统上通过源代码编译来安装Apache 2.4、MySQL 5.6和PHP 7.1。这个过程对于那些希望自定义软件配置或在没有预装包的环境中部署这些服务的系统管理员来说非常有用。 首先...

    Centos11+Apache+Mysql+Php安装配置详解.docx

    Centos11+Apache+Mysql+Php安装配置详解.docx

    Centos11+Apache+Mysql+Php安装配置详解.pdf

    Centos11+Apache+Mysql+Php安装配置详解.pdf

    centos 下apache+svn安装.docx

    总结来说,CentOS上Apache和Subversion的安装涉及下载源码、安装依赖、编译安装软件、配置Apache以支持SVN以及创建和配置版本库。整个过程需要对Linux系统、Apache服务器以及Subversion有一定了解,但遵循上述步骤,...

    SVN版本管理系统的安装(CentOS+Subversion+Apache+Jsvnadmin)安装步骤

    SVN 版本管理系统的安装(CentOS+Subversion+Apache+Jsvnadmin)安装步骤 本标题描述了本文档的主要内容,即 SVN 版本管理系统的安装过程,该过程包括安装 CentOS、Subversion、Apache 和 Jsvnadmin 等组件。 描述...

    centos搭建PHP+mysql+apache+svn

    非常便利的centos搭建PHP+mysql+apache+svn环境搭建文档,只需复制粘贴

    CentOS 7.2 SVN+Mysql+Apache+PHP版本管理工具安装配置

    ### CentOS 7.2 SVN+Mysql+Apache+PHP 版本管理工具安装配置知识点 #### 一、准备工作 在开始安装配置之前,确保以下条件得到满足: 1. **服务器可以连接到Yum源**:这一步至关重要,因为后续安装过程中会依赖Yum...

    CentOS 5.6编译安装Apache2.4.1+MySQL5.5.21+PHP5.3.10

    CentOS 5.6编译安装Apache2.4.1+MySQL5.5.21+PHP5.3.10

    Centos7.1+apache+mysql+php+zendGuardload配置教程.docx

    CentOS 7.1 + Apache + MySQL + PHP + ZendGuardLoader 配置教程 本文档主要介绍如何在 CentOS 7.1 操作系统上配置 Apache、MySQL、PHP 和 ZendGuardLoader 等环境。下面是详细的配置步骤和知识点: 1. 配置固定 ...

    从零开始部署CentOs7+Apache+PHP+mariaDB+https1

    【从零开始部署CentOS7+Apache+PHP+MariaDB+HTTPS】 这篇文章将引导你逐步完成在CentOS7系统上搭建一个基于Apache服务器、PHP处理脚本语言、MariaDB数据库服务以及启用HTTPS安全协议的过程。以下是详细的步骤: 1....

    oracle11g+centos 5+apache+php环境搭建(图文

    ### Oracle11g + CentOS 5 + Apache + PHP 环境搭建知识点 #### 一、CentOS 5 的安装及初始化设置 ##### 1.1 CentOS简介 - **定义**:CentOS是一个基于Red Hat Enterprise Linux (RHEL)源代码的社区发行版。 - **...

    Php5.6和Apache2.4环境搭建

    本教程将详细讲解如何在Windows操作系统上搭建Apache 2.4与PHP 5.6的环境,这对于开发和测试PHP应用程序是必要的。 首先,我们需要了解Apache和PHP的基础知识。Apache是一个开源的HTTP服务器,它能够处理并响应HTTP...

    centos linux+apache+mysql+php+memcache+zend

    ### LAMP环境搭建详解:CentOS Linux + Apache + MySQL + PHP + Memcache + Zend #### 一、引言 LAMP(Linux + Apache + MySQL + PHP)是一种常用的Web服务器架构,广泛应用于各种网站和应用程序的开发与部署。...

    centos5.6 DNS配置

    自己看文档,亲自操作后的整理的关于centos5.6 dns的基本配置步骤,希望帮助迷茫的你

    centos5.6安装oracle10g

    在本文中,我们将详细探讨如何在CentOS 5.6上安装Oracle 10g数据库。这个过程涉及多个步骤,包括系统准备、用户和组管理、内核参数配置、环境变量设定以及目录创建和权限设置。 首先,确保你的系统是CentOS 5.6,...

    CentOS5.6环境下设置yum代理

    CentOS5.6环境下设置yum代理

    Centos5.6中Redmine1.2.1安装过程

    ### CentOS 5.6 中 Redmine 1.2.1 安装过程详解 #### 一、Redmine 简介及版本兼容性 Redmine 是一个开源的、灵活的项目管理和问题跟踪工具,适用于跨平台环境。它支持多项目管理,并集成了各种版本控制系统,如 ...

    centos5.6图解安装

    ### CentOS 5.6 图解安装指南 #### 一、启动与配置虚拟机环境 - **启动虚拟机**:在虚拟化平台(如VMware、VirtualBox等)中启动已有的虚拟机或创建一个新的虚拟机。 - **创建新的虚拟机**:通过虚拟化软件创建一...

    centos6+centos7+centos8-升级openssh到9.8p1

    centos6+centos7+centos8-升级openssh到9.8p1

Global site tag (gtag.js) - Google Analytics