如何在 CentOS 7.0 安裝 Websvn

linux.cn發表於2015-03-31

大家好,今天我們會在CentOS 7.0 上為 subversion(SVN)安裝Web 介面 WebSVN。(subverion 是 apache 的頂級專案,也稱為 Apache SVN 或 SVN)

WebSVN 將 Svbverion 的操作你的倉庫的各種功能通過 Web 介面提供出來。通過它,我們可以看到任何給定版本的任何檔案或者目錄的日誌,並且可看到所有檔案改動、新增、刪除的列表。我們同樣可以檢視兩個版本間的差異來知道特定版本改動了什麼。

如何在CentOS 7.0 安裝 Websvn

特性

WebSVN提供了下面這些特性:

  • 易於使用的使用者介面
  • 可定製的模板系統
  • 色彩化的檔案列表
  • 追溯檢視
  • 日誌資訊查詢
  • RSS支援
  • 更多

由於其使用PHP寫成,WebSVN同樣易於移植和安裝。

現在我們將為Subverison安裝WebSVN。請確保你的伺服器上已經安裝了 SVN。如果你還沒有安裝,你可以按本教程安裝。

安裝完SVN後,你需要以下幾步。

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

如何在CentOS 7.0 安裝 Websvn

這裡,我下載的是最新的2.3.3版本的 websvn。你可以從上面這個網站找到下載連結,用適合你的包的連結來替換上面的連結。

2. 解壓下載的zip

# unzip websvn-2.3.3.zip

# mv websvn-2.3.3 websvn

如何在CentOS 7.0 安裝 Websvn

3. 安裝php

# yum install php

如何在CentOS 7.0 安裝 Websvn

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";

如何在CentOS 7.0 安裝 Websvn

5. 啟動 WebSVN

現在,我們將近完成了。現在需要重啟Apache服務。你可以用下面的命令。

# systemctl restart httpd.service

接著我們在瀏覽器中開啟WebSVN,輸入 http:// IP地址/websvn ,或者你在本地的話,你可以輸入 http://localhost/websvn 。

如何在CentOS 7.0 安裝 Websvn

注意: 如果你遇到一個像”Unable to find “enscript” tool at location “/usr/bin/enscript”這樣的問題,那麼你需要使用“yum install enscript”安裝enscript來修復這個問題。

總結

好了,我們已經在CentOS 7上完成WebSVN的安裝了。這個教程同樣適用於RHEL 7。

如果你有任何問題、評論、反饋請在下面的評論欄中留下,來讓我們知道該新增什麼和改進。謝謝! 用用看吧。:-)

相關文章