安装说明
系统环境:CentOS-6.3
安装方式:yum install (源码安装容易产生版本兼容的问题)
安装软件:系统自动下载SVN软件
检查已安装版本
#检查是否安装了低版本的SVN
[root@localhost /]# rpm -qa subversion
#卸载旧版本SVN
[root@localhost modules]# yum remove subversion
安装SVN
[root@localhost modules]# yum install httpd httpd-devel subversion mod_dav_svn mod_auth_mysql
确认已安装了svn模块
[root@localhost /]# cd /etc/httpd/modules
[root@localhost modules]# ls | grep svn
mod_authz_svn.so
mod_dav_svn.so
验证安装
检验已经安装的SVN版本信息
[root@localhost modules]# svnserve --version
编译于 Jun 23 2012,00:44:03
版权所有 (C) 2000-2009 CollabNet。
Subversion 是开放源代码软件,请参阅 http://subversion.tigris.org/ 站点。
此产品包含由 CollabNet(http://www.Collab.Net/) 开发的软件。
下列版本库后端(FS) 模块可用:
* fs_base : 模块只能操作BDB版本库。
* fs_fs : 模块与文本文件(FSFS)版本库一起工作。
Cyrus SASL 认证可用。
代码库创建
SVN软件安装完成后还需要建立SVN库
[root@localhost modules]# mkdir -p /opt/svn/repositories
[root@localhost modules]# svnadmin create /opt/svn/repositories
执行上面的命令后,自动建立repositories库,查看/opt/svn/repositories 文件夹发现包含了conf, db,format,hooks, locks, README.txt等文件,说明一个SVN库已经建立。
配置代码库
进入上面生成的文件夹conf下,进行配置
[root@localhost modules]# cd /opt/svn/repositories/conf
用户密码passwd配置
[root@localhost password]# cd /opt/svn/repositories/conf
[root@admin conf]# vi + passwd
修改passwd为以下内容:
# harry = harryssecret
# sally = sallyssecret
zhoulf=123456
权限控制authz配置
[root@admin conf]# vi + authz
目的是设置哪些用户可以访问哪些目录,向authz文件追加以下内容:
[/]
zhoulf=rw
服务svnserve.conf配置
[root@admin conf]# vi + svnserve.conf
追加以下内容:
#匿名访问的权限,可以是read,write,none,默认为read
anon-access=none
#使授权用户有写权限
auth-access=write
#密码数据库的路径
password-db=passwd
#访问控制文件
authz-db=authz
#认证命名空间,subversion会在认证提示里显示,并且作为凭证缓存的关键字
realm=/opt/svn/repositories
配置防火墙端口
[root@localhost conf]# vi /etc/sysconfig/iptables
添加以下内容:
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3690 -j ACCEPT
保存后重启防火墙
[root@localhost conf]# service iptables restart
启动SVN
svnserve -d -r /opt/svn/repositories
svnserve -d -r /home/svnrepos/svn/repositories
查看SVN进程
[root@localhost conf]# ps -ef|grep svn|grep -v grep
root 12538 1 0 14:40 ? 00:00:00 svnserve -d -r /opt/svn/repositories
检测SVN 端口
[root@localhost conf]# netstat -ln |grep 3690
tcp 0 0 0.0.0.0:3690 0.0.0.0:* LISTEN
停止重启SVN
[root@localhost password]# killall svnserve //停止
[root@localhost password]# svnserve -d -r /opt/svn/repositories // 启动
测试
SVN服务已经启动,使用客户端测试连接。
客户端连接地址:svn://192.168.15.231
用户名/密码: zhoulf/123456
测试创建文件夹等操作。
参考:http://www.cnblogs.com/zhoulf/archive/2013/02/02/2889949.html
相关推荐
Txt文件中包含 CentOS-6.3-i386-bin-DVD1.iso 和 CentOS-6.3-i386-bin-DVD2.iso 的官网下载地址 和百度网盘下载地址
CentOS-6.3-i386-bin-DVD1.iso 镜像文件 用于虚拟机系统安装。
CentOS 团员已经发布了 CentOS 6 系列的第三个版本,CentOS 6.3 基于上游的红帽 RHEL 6.3。CentOS 是一个企业级的 Linux 发行版本,CentOS 是 RHEL(Red Hat ...CentOS-6.3-i386-bin-DVD1to2.torrent(包含第1、2张ISO)
本资源为Linux版本操作系统CentOS-6.3 DVD-1-DVD-2,由于文件共有4.5G左右,所以该处为下载地址链接,可选择用迅雷,QQ旋风等BT种子下载器下载,开始下载前请仔细阅读压缩包内的说明等文档。
对于安装,只需要第一个镜像文件,即`CentOS-6.3-i386-bin-DVD1.iso`(32位)或`CentOS-6.3-x86_64-bin-DVD1.iso`(64位)。第二个镜像包含额外的软件包,但不是安装过程所必需的。 2. **系统需求** 安装CentOS ...
- 32位:`http://mirror.centos.org/centos/6.3/isos/i386/CentOS-6.3-i386-bin-DVD1to2.torrent` - 64位:`http://mirror.centos.org/centos/6.3/isos/x86_64/CentOS-6.3-x86_64-bin-DVD1to2.torrent` 在下载过程...
首先,我们要确保拥有必要的安装文件,包括VMware Workstation虚拟机软件和CentOS-6.3的ISO镜像文件。下面是一步一步的安装指南: 1. **下载安装文件**: - VMware-workstation-full-8.0.1.exe是VMware ...
CentOS-6.3-x86_64-bin-DVD1/2
CentOS-6.3系统中安装配置Web服务器Nginx.docx
CentOS-6.3-x86_64-bin-DVD1to2.torrent
### CentOS 6.3 安装 MySQL 集群详细指南 #### 一、环境概述与准备工作 在本文档中,我们将详细介绍如何在 CentOS 6.3 系统上搭建 MySQL 集群。该集群易于搭建且基于内存运行,不需要共享存储,非常适合对性能有较...
在开始搭建LAMP环境之前,需要确保CentOS 6.3系统已经安装完毕,并且能够正常运行。此外,还需要安装一些必要的开发工具和依赖包,以确保后续安装过程顺利进行。 - **安装编译环境**: - 执行以下命令安装GCC编译器...
4. CentOS-6.3-i386-netinstall.iso - 通过网络安装,适合没有 DVD 驱动器或需要无人值守安装的情况。 安装环境通常是在虚拟机软件(如 VMware 或 VirtualBox)中搭建。确保分配足够的虚拟硬件资源,如内存、CPU 和...
系统环境:CentOS-6.3 安装方式:yum install (源码安装容易产生版本兼容的问题) 安装软件:系统自动下载SVN软件 检查已安装版本 #检查是否安装了低版本的SVN [root@localhost /]# rpm -qa subversion #...
# CentOS-7-x86_64-DVD-1810.iso CentOS 7.6 DVD 版 4G http://mirrors.163.com/centos/7.6.1810/isos/x86_64/CentOS-7-x86_64-DVD-1810.iso # CentOS-7-x86_64-Everything-1810.iso CentOS 7.6 Everything版 10G ...
- **第一个镜像**:用于安装系统,例如 `CentOS-6.3-i386-bin-DVD1.iso`(32位)或 `CentOS-6.3-x86_64-bin-DVD1.iso`(64位)。 - **第二个镜像**:包含额外的软件包,非必需。 #### 三、硬件要求 - **内存**:...
CentOS-6.1-x86_64-bin-DVD1.iso CentOS-7-x86_64-bin-DVD2.iso CentOS-8.2-x86_64-bin-DVD1.iso 除DVD版还有各个minimal等版本提供高速下载 下载地址,提供了迅雷的高速下载通道,实测速度为31M/S,
- **32位**:`CentOS-6.3-i386-bin-DVD1.iso` - **64位**:`CentOS-6.3-x86_64-bin-DVD1.iso` - **下载地址**: - **32位**:`...
【标题】"(CentOS7镜像)CentOS-7-x86-64-Minimal-2009.rar" 提供的是一个基于Linux发行版的CentOS 7的最小化安装镜像,适用于创建虚拟机环境。这个版本特别针对系统管理员和开发者设计,包含了运行操作系统最基本...