博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux下搭建svn代码库
阅读量:4648 次
发布时间:2019-06-09

本文共 3193 字,大约阅读时间需要 10 分钟。

1、安装svn客户端

2、创建svn代码库


1、安装svn客户端

  1.1、使用命令安装

  1)CentOS

$ yum install subversion

  2)ubuntu

sudo apt-get install subversion

  1.2、源码安装

  


 

2、开启svn服务进程

  2.1、我的习惯是把代码仓库放在/opt/svn目录下,所以先创建目录/opt/svn

$ mkdir /opt/svn -p

  2.2、开启svn服务进程

svnserve -d -r /opt/svn/

  这个命令的作用是开启svn服务进程,并且把/opt/svn/目录作为我们的svn服务的根目录。以后,当我们要在客户端checkout代码的时候,svn服务进程就会从这里开始进行查询,类似于apache的/var/www/目录的作用。

  运行如下命令检查svn服务是否开启了。

# ps -ef | grep svnroot      2572     1  0 09:22 ?        00:00:00 svnserve -d -r /opt/svn/

  如果,出现以上结果,这说明svn服务正常开启了。

  2.3、创建我们的第一个代码仓库:firsttest

# cd /opt/svn/# svnadmin create firsttest

  这就创建了我们的第一个代码仓库,这个代码仓库的名字就叫做“firsttest”,可以看到其中的文件

# ls firsttest/README.txt  conf  db  format  hooks  locks

  2.4、下面对我们的代码仓库进行权限设置

  1)进入conf目录

# cd firsttest/conf/

  2)编辑svnserve.conf。这个文件是要告诉svn服务进程,我们的firsttest项目的认证权限和认证需要的密码文件以及认证文件的存放位置。

  在第8行左右找到“[general]”,对其下面的内容进行编辑

# vim svnserve.conf### Visit http://subversion.tigris.org/ for more information.[general]### These options control access to the repository for unauthenticated### and authenticated users.  Valid values are "write", "read",

  其中需要编辑的地方分别是

  2.1)

### and "none".  The sample settings below are the defaults.# anon-access = read# auth-access = write### The password-db option controls the location of the password

  修改为

### and "none".  The sample settings below are the defaults.anon-access = noneauth-access = write### The password-db option controls the location of the password

  注意,红色的两行前面不能有空格,否个svn会读取失败,下面的修改也要注意这些。

  2.2)

### Uncomment the line below to use the default password file.# password-db = passwd### The authz-db option controls the location of the authorization

  改为

### Uncomment the line below to use the default password file.password-db = passwd### The authz-db option controls the location of the authorization

  2.3)

### Uncomment the line below to use the default authorization file.# authz-db = authz### This option specifies the authentication realm of the repository.

  修改为

### Uncomment the line below to use the default authorization file.authz-db = authz### This option specifies the authentication realm of the repository.

  对于一般的情况,修改到这里就可以了,下面的选项是加密选项等的加强版,这里就不说了。

  3)下面修改passwd文件。

# vim passwd

  3.1)找到“[users]”,在此选项下添加用户“woshihehe”,“woshihehe”用户对应的密码是“123456”

[users]# harry = harryssecret# sally = sallyssecretwoshihehe = 123456

  4)修改authz文件

# vim authz

  在最后添加两行

# [repository:/baz/fuz]# @harry_and_sally = rw# * = r[/]woshihehe=rw

  这两行的意思是,目录[/](代码根目录)下的所有文件,如果没有特殊约定的话,woshihehe用户将具有读(r)和写(w)的权限。

3、下载代码

  假如我的svn服务器的IP是192.168.1.105,在其它的机器上,执行如下代码

# svn co svn://192.168.1.105:/firsttest --username woshihehe认证领域: 
My First Repository“woshihehe”的密码:

  那么接下来输入密码就可以了

-----------------------------------------------------------------------注意!  你的密码,对于认证域:   
My First Repository只能明文保存在磁盘上! 如果可能的话,请考虑配置你的系统,让 Subversion可以保存加密后的密码。请参阅文档以获得详细信息。你可以通过在“/root/.subversion/servers”中设置选项“store-plaintext-passwords”为“yes”或“no”,来避免再次出现此警告。-----------------------------------------------------------------------保存未加密的密码(yes/no)?yes取出版本 0。

  填写yes,这样我们就取出了我们的代码,版本是0。这时候就可以在里面添加目录和文件了。不过这个是如何使用svn了,这里就细说了。

 

转载于:https://www.cnblogs.com/fengbohello/p/4548580.html

你可能感兴趣的文章
JAVA多线程
查看>>
ACE(Adaptive Communication Environment)介绍
查看>>
delphi 更改DBGrid 颜色技巧
查看>>
python编码问题
查看>>
POJ 2031 Building a Space Station
查看>>
面向对象1
查看>>
编程开发之--java多线程学习总结(5)
查看>>
如何让 zend studio 10 识别 Phalcon语法并且进行语法提示
查看>>
任意阶幻方(魔方矩阵)C语言实现
查看>>
视频教程--ASP.NET MVC 使用 Petapoco 微型ORM框架+NpgSql驱动连接 PostgreSQL数据库
查看>>
第五次作业
查看>>
织梦教程
查看>>
杭电多校 Harvest of Apples 莫队
查看>>
java 第11次作业:你能看懂就说明你理解了——this关键字
查看>>
C/C++心得-结构体
查看>>
函数名作为参数传递
查看>>
apt-get for ubuntu 工具简介
查看>>
数值计算算法-多项式插值算法的实现与分析
查看>>
day8-异常处理与网络编程
查看>>
Python基础-time and datetime
查看>>