Linux中國

在 CentOS 7中安裝Websvn

特性

WebSVN提供了以下這些特性:

  • 易於使用的界面;
  • 可自定義的模板系統;
  • 彩色文件列表;
  • 過錯視圖;
  • 日誌信息搜索;
  • 支持RSS訂閱;

安裝

我按以下鏈接來將Subversion安裝到CentOS 7。

1 – 下載websvn到/var/www/html。

cd /var/www/html
wget http://websvn.tigris.org/files/documents/1380/49057/websvn-2.3.3.zip

2 – 解壓zip包。

unzip websvn-2.3.3.zip
mv websvn-2.3.3 websvn

3 – 安裝php到你的系統。

yum install php

4 – 編輯web svn配置。

cd /var/www/html/websvn/include
cp distconfig.php config.php
vi 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";
~

保存並退出。

6 – 重新載入apache並啟動websvn鏈接http://ip/websvn。

websvn

一切搞定。

via: http://www.unixmen.com/install-websvn-centos-7/

作者:M.el Khamlichi 譯者:GOLinux 校對:wxy

本文由 LCTT 原創翻譯,Linux中國 榮譽推出


本文轉載來自 Linux 中國: https://github.com/Linux-CN/archive

對這篇文章感覺如何?

太棒了
0
不錯
0
愛死了
0
不太好
0
感覺很糟
0
雨落清風。心向陽

    You may also like

    Leave a reply

    您的電子郵箱地址不會被公開。 必填項已用 * 標註

    此站點使用Akismet來減少垃圾評論。了解我們如何處理您的評論數據

    More in:Linux中國