发布网友 发布时间:2022-05-01 03:50
共1个回答
热心网友 时间:2022-05-13 04:30
1. 下载 WebSVN
你可以从官方网站 http://www.websvn.info/download/ 中下载 WebSVN。我们首先进入 /var/www/html/ 并在这里下载安装包。
$ sudo -s
请在shell或者终端中执行上面的命令,因为我们需要切换到root权限来对系统*区域有访问权。
# cd /var/www/html# wget http://websvn.tigris.org/files/documents/1380/49057/websvn-2.3.3.zip
downloading websvn package
这里,我下载的是最新的2.3.3版本的 websvn。你可以从上面这个网站找到下载链接,用适合你的包的链接来替换上面的链接。
2. 解压下载的zip
# unzip websvn-2.3.3.zip# mv websvn-2.3.3 websvn
extracting websvn
3. 安装php
# yum install 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 files\\subversion\\bin $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";
websvn config file
5. 启动 WebSVN
现在,我们将近完成了。现在需要重启Apache服务。你可以用下面的命令。
# systemctl restart httpd.service
接着我们在浏览器中打开WebSVN,输入 http:// IP地址/websvn ,或者你在本地的话,你可以输入 http://localhost/websvn 。
websvn successfully installed
注意: 如果你遇到一个像"Unable to find "enscript" tool at location "/usr/bin/enscript"这样的问题,那么你需要使用“yum install enscript”安装enscript来修复这个问题。