1.svn 服务器端安装:
yum -y install subversion
2.创建一个svn的库,创建后仓库目录下的config目录会有3个文件:authz,passwd,svnserve.conf
mkdir /haizewang/svn
svnamdin create /haizewang/svn/repository
3.authz文件配置如下:
[aliases] # joe = /C=XZ/ST=Dessert/L=Snake City/O=Snake Oil, Ltd./OU=Research Institute/CN=Joe Average [groups] # harry_and_sally = harry,sally # harry_sally_and_joe = harry,sally,&joe [/] *=r zl = rw tyj = rw
[users] zl = 1992 tyj = 2015
[general] anon-access = none auth-access = write password-db = passwd authz-db = authz # use-sasl = true # min-encryption = 0 # max-encryption = 256
6.启动服务器:
svnserve -d --listen-port 3690 -r /haizewang/svn/repository或者svnserve -d -r /haizewang/svn/repository 其中 -d 表示守护进程, -r 表示在后台执行,/haizewang/svn/repository为svn库的安装目录
查找进程:ps -ef|grep svnserve
root 4967 1 0 Aug23 ? 00:00:00 svnserve -d -r repository/
杀死进程:
kill -9 4967杀死进程, 此4967为进程号
svn服务的关闭:
killall svnserve
增加脚本执行权限:
chmod +x post-commit
客户端连接:svn://linux服务器的ip地址/
注意:SVN服务器端并不是把上传的文件原样保存的,以SVN服务器常见的FSFS格式为例,是将每次上传的所有文件与这些文件的前一版本比较后,将其差异部分保存在以版本号命名的一个文件中,所以在服务器端你是看不到单个的每个上传文件的。