这里,我下载的是最新的2.3.3版本的 websvn。你可以从上面这个网站找到下载链接,用适合你的包的链接来替换上面的链接。
2. 解压下载的zip
代码如下:
# unzip websvn-2.3.3.zip
# mv websvn-2.3.3 websvn
3. 安装php
代码如下:
# yum install php
4. 编辑WebSVN配置
现在,我们需要拷贝位于 /var/www/html/websvn/include 的 distconfig.php 为 config.php,并且接着编辑该配置文件。
代码如下:
# cd /var/www/html/websvn/include
# cp distconfig.php config.php
# nano config.php
现在我们需要按如下改变文件。完成之后,请保存并退出。
代码如下:
// Configure these lines if your commands aren't on your path.
//
$config-setSVNCommandPath('/usr/bin'); // e.g. c:program filessubversionbin
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/fuwuqi/)$config-setDiffPath('/usr/bin');
// For syntax colouring, if option enabled...
$config-setEnscriptPath('/usr/bin');
$config-setSedPath('/bin');
// For delivered tarballs, if option enabled...
$config-setTarPath('/bin');
// For delivered GZIP'd files and tarballs, if option enabled...
$config-setGZipPath('/bin');
//
$config-parentPath('/svn/');
$extEnscript[".pl"] = "perl";
$extEnscript[".py"] = "python";
$extEnscript[".sql"] = "sql";
$extEnscript[".java"] = "java";
$extEnscript[".html"] = "html";
$extEnscript[".xml"] = "html";
$extEnscript[".thtml"] = "html";
$extEnscript[".tpl"] = "html";
$extEnscript[".sh"] = "bash";
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/fuwuqi/)5. 启动 WebSVN
现在,我们将近完成了。现在需要重启Apache服务。你可以用下面的命令。
代码如下:
# systemctl restart httpd.service
接着我们在浏览器中打开WebSVN,输入 http:// IP地址/websvn ,或者你在本地的话,你可以输入 http://localhost/websvn 。
注意: 如果你遇到一个像"Unable to find "enscript" tool at location "/usr/bin/enscript"这样的问题,那么你需要使用yum install enscript安装enscript来修复这个问题。
总结
好了,我们已经在CentOS 7上完成WebSVN的安装了。这个教程同样适用于RHEL 7。