您好,登錄后才能下訂單哦!
本篇文章為大家展示了CentOS中怎么安裝Websvn,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
1. 下載 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
這里,我下載的是最新的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 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";
5. 啟動 WebSVN
現在,我們將近完成了。現在需要重啟Apache服務。你可以用下面的命令。
代碼如下:
# systemctl restart httpd.service
接著我們在瀏覽器中打開WebSVN,輸入 http:// IP地址/websvn ,或者你在本地的話,你可以輸入 http://localhost/websvn 。
上述內容就是CentOS中怎么安裝Websvn,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。