1、安装svn
yum -y install subversion2、启动svn
svnserve -d -r /www/svndata启动svn时以下异常
svnserve: error while loading shared libraries: libaprutil-1.so.0: cannot open shared object file: No such file or directory找不到libaprutil-1.so.0,于是
find / -name libaprutil-1.so.0结果为
/www/wdlinux/httpd-2.2.22/lib/libaprutil-1.so.03、将apr依赖包添加到共享库
查看共享库配置文件
more /etc/ld.so.conf include ld.so.conf.d/*.conf创建apr共享库配置文件
cd /etc/ld.so.conf.d/ vi httpd-apr.conf /www/wdlinux/httpd-2.2.22/lib/更新共享库配置
ldconfig -v4、检测是否安装成功
svn --version结果为
svn, version 1.6.11 (r934486) compiled Mar 5 2014, 14:28:03 Copyright (C) 2000-2009 CollabNet. Subversion is open source software, see http://subversion.tigris.org/ This product includes software developed by CollabNet (http://www.Collab.Net/). The following repository access (RA) modules are available: * ra_neon : Module for accessing a repository via WebDAV protocol using Neon. - handles 'http' scheme - handles 'https' scheme * ra_svn : Module for accessing a repository using the svn network protocol. - with Cyrus SASL authentication - handles 'svn' scheme * ra_local : Module for accessing a repository on local disk. - handles 'file' scheme此时说明已将安装成功
5、启动svn
svnadmin create /www/svndata/testproject修改配置文件svnserve.conf
cd /www/svndata/testproject/conf vi svnserve.conf
#添加如下配置项 anon-access=none auth-access=write password-db=passwd修改密码文件passwd,添加相应的用户和密码
vi passwd [users] harry = harryssecret sally = sallyssecret重启svn,为了增加svn的安全性,这里将svnm的默认端口3690改为6534。
#关闭svn服务 killall svnserve #新的端口启动 svnserve -d -r /www/svndata --listen-port 6534当然,如果出于安全性的考虑,你还可以添加https的支持。这里就不再详述。
6、使用svn
svn客户端中使用 “svn://你的IP:端口/项目名称/”进行项目的下载和管理等,当然你也可以通过命令行进行管理,这就见仁见智了。
svn://你的IP:端口/项目名称/
svnserve: error while loading shared libraries: libaprutil-1.so.0: cannot open shared object file:
最新推荐文章于 2024-09-19 21:47:53 发布