小蜜锋 - 云代码空间
—— 技术宅拯救世界!
yum install subversion从镜像下载安装svn服务器端
#进入目录,准备创建svn目录 cd /usr/local/ #创建一个svn目录 mkdir svnRepo #修改目录权限为777 chmod -R 777 svnRepo #创建一个svn版本仓库first(first可以随便起名字) svnadmin create /usr/local/svnRepo/first #进入first版本仓库下的配置文件目录 cd first/conf
vi svnserve.conf把
# anon-access = read # auth-access = write # password-db = passwd前面的#号和空格去掉,变成
anon-access = none //改成none auth-access = write password-db = passwd realm = first //改成自己的版本库保存退出
vi authz
[group] first = ddl,shl //创建一个first的组,并制定两个用户ddl和shl [/] //制定根目录下的权限 @first = rw //first组用户权限为读写 * = r //其他用户只有读权限
vi passwd
[users] user1 = abcd1234 //用户名为gep的用户的密码为abcd1234 fengge = 123456 //。。。保存退出
vi /etc/rc.local打开自启动文件,文件内容如下
#!/bin/sh # # This script will be executed *after* all the other init scripts. # You can put your own initialization stuff in here if you don't # want to do the full Sys V style init stuff. touch /var/lock/subsys/local添加下面一行
svnserve -d -r /usr/local/svnRepo/first保存退出
lsof -i :3690 查看svn是否启动 ps aux |grep 'svn' 查找所有svn启动的进程 kill -9 2505 杀死2505这个查找到的svn进程 svnserve -d -r /usr/local/svnRepo/first 启动svn(可以把这个放到/etc/local/rc.local文件中,实现开机自启动)
vi authz
[groups] company = user1,user2 [first:/] //指定版本库跟目录下的权限 @company = rw //company组用户权限为读写 * = r //其他用户只有读权限保存退出
vi passwd
[users] user1 = 123456 user2 = 123456