温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

在CentOS6.7安装SVN和SVN钩子

发布时间:2020-07-30 23:35:20 来源:网络 阅读:1043 作者:约珥 栏目:开发技术

系统和版本:CentOS6.7+SVN1.6.11


Step 1: 安装Subversion

[root@80 ~]# yum install subversion


Step 2: 检查版本

[root@80 ~]# svn --version


Step 3: 创建SVN目录和仓库

[root@80 svn]# mkdir /opt/svn

[root@80 svn]# svnadmin create /opt/svn/test.localhost.com


Step 4: 添加用户和权限

[root@80 repos]# vim /opt/svn/test.localhost.com/conf/passwd

[users]

# harry = harryssecret

# sally = sallyssecret

jasonwu = jasonwupw

alanzhang = alanzhangpw

sky = skypw

joel = joelpw


[root@80 repos]# vim /opt/svn/test.localhost.com/conf/authz 

[groups]

DEV  = joel,sky,alanzhang,jasonwu

[v2.test.localhost.com:/]

@DEV = rw

* =


Step 5: 修改配置文件

[root@80 repos]# vim /opt/svn/test.localhost.com/conf/svnserve.conf 

anon-access = none

auth-access = write

password-db = /opt/svn/test.localhost.com/conf/passwd

authz-db = /opt/svn/test.localhost.com/conf/authz

realm = My First Repository


Step 6: 开启svn服务

[root@80 test.localhost.com]# svnserve -d -r /opt/svn


Step 7: checkout副本

[root@80 www]# svn co svn://192.168.11.80/test.localhost.com


Authentication realm: <svn://192.168.11.80:3690> My First Repository

Password for 'joel': 

Authentication realm: <svn://192.168.11.80:3690> My First Repository

Username: joel

Password for 'joel': 

Authentication realm: <svn://192.168.11.80:3690> My First Repository

Username: sky

Password for 'sky': 


-----------------------------------------------------------------------

ATTENTION!  Your password for authentication realm:


   <svn://192.168.11.80:3690> My First Repository


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)? 


Step 8: 增加文件到SVN

[root@80 test.localhost.com]# vim test.txt

[root@80 test.localhost.com]# svn add *

A         test.txt


Step 9: 提交文件到SVN

[root@80 test.localhost.com]# svn commit * -m 'test'

Adding         test.txt

Transmitting file data .

Committed revision 1.


Step 10: 修改钩子

[root@80 www]# cd /opt/svn/test.localhost.com/

[root@80 test.localhost.com]# cd hooks/

[root@80 hooks]# vim post-commit 

#!/bin/sh

#export LANG=zh_CN.UTF-8


SVN=/usr/bin/svn

WEB=/www/test.localhost.com


$SVN update $WEB  --username sky --password sky


[root@80 hooks]# chmod -R 755 post-commit

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI