1.yum install subversion安装svn
2.svn --version查看安装版本
3.svnadmin create /duoceshi/svn/repo/创建版本库,(/duoceshi/svn/repo这个目录自定义的,如果不存在执行命令的时候会自动创建)
4.ls -al /duoceshi/svn/repo查看/duoceshi/svn/repo/ 文件夹发现包含了conf,db,format,hooks,locks,README.txt等文件,说明一个SVN库已经建立。
5.用户账号密码配置:
-bash-4.1# vim passwd
### This file is an example password file for svnserve.
### Its format is similar to that of svnserve.conf. As shown in the
### example below it contains one section labelled [users].
### The name and password for each user follow,one account per line.
[users]
# harry = harryssecret
# sally = sallyssecret
duoceshi = 123456
IceChien = 123456
#设置根目录表示svn目录所有资源
[/]
#用户设置读写权限
duoceshi = rw
IceChien = rw
[general]
#匿名访问的权限,可以是read,write,none,默认为read
anon-access=none
#使授权用户有写权限
auth-access=write
#密码数据库的路径
password-db=passwd
#访问控制文件
authz-db=authz
#认证命名空间,subversion会在认证提示里显示,并且作为凭证缓存的关键字
realm=/duoceshi/svn/repo
8.启动svn,使用以下命令:
svnserve -d -r /duoceshi/svn/repo/
9.查看启动进程和监听端口号
查看启动进程:
-bash-4.1# ps -ef|grep svn|grep -v grep
root 2397 1 0 11:00 ? 00:00:00 svnserve -d -r /duoceshi/svn/repo/
查看监听端口情况:
-bash-4.1# netstat -ln|grep 3690
tcp 0 0 0.0.0.0:3690 0.0.0.0:* LISTEN
10.启动和停止svn命令
svnserve -d -r /duoceshi/svn/repo/(启动svn服务)
killall svnserve(关闭svn服务)
11.SVN服务已经启动,使用客户端测试连接。
客户端连接地址(在客户端主机安装svn客户端):svn://192.168.1.220
用户名/密码: duoceshi/123456 IceChien/123456
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。