ubuntu下安裝svn提供HTTP版本管理服務

一、安裝和配置

Install Subversion with Web Access on Ubuntu

This article covers installing subversion with the apache module so that it can be easily accessed from other systems on a public network. If you want a more secure svn server, you could use svnserve+ssh, which isn’t covered in this article.

To install subversion, open a terminal and run the following command:

sudo apt-get install subversion libapache2-svn

We’re going to create the subversion repository in /svn, although you should choose a location that has a good amount of space.

sudo svnadmin create /svn

Next we’ll need to edit the configuration file for the subversion webdav module. You can use a different editor if you’d like.

sudo gedit /etc/apache2/mods-enabled/dav_svn.conf

The Location element in the configuration file dictates the root directory where subversion will be acessible from, for instance: http://www.server.com/svn

<Location /svn>

The DAV line needs to be uncommented to enable the dav module

# Uncomment this to enable the repository,
DAV svn

The SVNPath line should be set to the same place your created the repository with the svnadmin command.

# Set this to the path to your repository
SVNPath /svn

The next section will let you turn on authentication. This is just basic authentication, so don’t consider it extremely secure. The password file will be located where the AuthUserFile setting sets it to…  probably best to leave it at the default.

# Uncomment the following 3 lines to enable Basic Authentication
AuthType Basic
AuthName “Subversion Repository”
AuthUserFile /etc/apache2/dav_svn.passwd


提到/etc/apache2/mods-enabled/dav_svn.conf的配置,要注意的是<Location /svn> 是一個根配置元素,在dav_svn.conf文件的末尾還有個</Location>元素,不過也被註釋了,要記得把它uncomment 掉。

To create a user on the repository use, the following command:

sudo htpasswd2 -cm /etc/apache2/dav_svn.passwd <username>

Note that you should only use the -c option the FIRST time that you create a user. After that you will only want to use the -m option, which specifies MD5 encryption of the password, but doesn’t recreate the file.

Example:

sudo htpasswd2 -cm /etc/apache2/dav_svn.passwd geek
New password:
Re-type new password:
Adding password for user geek

Restart apache by running the following command:

sudo /etc/init.d/apache2 restart

Now if you go in your browser to http://www.server.com/svn, you should see that the repository is enabled for anonymous read access, but commit access will require a username.

If you want to force all users to authenticate even for read access, add the following line right below the AuthUserFile line from above. Restart apache after changing this line.

Require valid-user

Now if you refresh your browser, you’ll be prompted for your credentials:

You now have a working subversion server!

 

二、svn的一些基本操作

http://svnbook.red-bean.com/nightly/en/svn-book.html#svn.tour.importing

 

三、

  • 安裝Apache2
    #sudo apt-get install apache2
  • 安裝SVN
    #sudo apt-get install subversion libapache2-svn
  • 配置Apache2的配置文件 /etc/apache2/mods-available/dav_svn.conf
    <Location /svn>
    DAV svn
    SVNParentPath /opt/svn/repos/
    AutoType Basic
    AutoName "My Respository"
    AutoUserFile /opt/svn/password
    Require valid-user
    </Location>
  • 創建項目目錄
    #sudo svnadmin create /opt/svn/repos/myproject
  • 創建用戶名和密碼
    #sudo htpasswd -c /opt/svn/passwd robinhuang (第二次創建可取消-c)
  • 使Apache的某些模塊有效
    #sudo a2enmod dav dav_fs dav_svn
  • 最後重載Apache
    #sudo /etc/init.d/apache2 force-reload
    注意:當創建一個項目之後,需要運行以下命令:
    #sudo chown -R www-data: /opt/svn/repos
    使得該項目的文件能夠正常訪問。
發佈了110 篇原創文章 · 獲贊 3 · 訪問量 23萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章