1. 程式人生 > >CentOS 7下搭建配置SVN伺服器

CentOS 7下搭建配置SVN伺服器

1. 安裝

CentOS通過yum安裝subversion。

$ sudo yum install subversion

 subversion安裝在/bin目錄:

$ which svnserve
/bin/svnserve

檢查一下subversion是否安裝成功。

$ svnserve --version
svnserve, version 1.7.14 (r1542130)
  compiled Nov 20 2015, 19:25:09

Copyright (C) 2013 The Apache Software Foundation.
This software consists of contributions made by many people; see the NOTICE
file for more information.
Subversion is open source software, see http://subversion.apache.org/

The following repository back-end (FS) modules are available:

* fs_base : Module for working with a Berkeley DB repository.
* fs_fs : Module for working with a plain file (FSFS) repository.

Cyrus SASL authentication is available.

2. 建立版本庫

subversion預設以/var/svn作為資料根目錄,可以通過/etc/sysconfig/svnserve修改這個預設位置。

$ systemctl cat svnserve.service
# /usr/lib/systemd/system/svnserve.service
[Unit]
Description=Subversion protocol daemon
After=syslog.target network.target

[Service]
Type=forking
EnvironmentFile=/etc/sysconfig/svnserve
ExecStart=/usr/bin/svnserve --daemon --pid-file=/run/svnserve/svnserve.pid $OPTIONS

[Install]
WantedBy=multi-user.target

$ cat /etc/sysconfig/svnserve
# OPTIONS is used to pass command-line arguments to svnserve.
#
# Specify the repository location in -r parameter:
OPTIONS="-r /var/svn"

我們修改/etc/sysconfig/svnserver將預設目錄指定到/opt/svn。

$ cat /etc/sysconfig/svnserve
OPTIONS="-r /opt/svn"

使用svnadmin建立版本庫spring-hello-world。

$ sudo mkdir -p /opt/svn
$ sudo svnadmin create /opt/svn/spring-hello-world

$ ll /opt/svn/
drwxr-xr-x. 6 root root 80 Nov 10 14:42 spring-hello-world

$ ll /opt/svn/spring-hello-world/
drwxr-xr-x. 2 root root  51 Nov 10 14:42 conf
drwxr-sr-x. 6 root root 4096 Nov 10 14:42 db
-r--r--r--. 1 root root    2 Nov 10 14:42 format
drwxr-xr-x. 2 root root 4096 Nov 10 14:42 hooks
drwxr-xr-x. 2 root root  39 Nov 10 14:42 locks
-rw-r--r--. 1 root root  229 Nov 10 14:42 README.txt

3. 配置

編輯使用者檔案passwd,新增兩個使用者:admin和guest。

$ cat /opt/svn/spring-hello-world/conf/passwd 
[users]
admin = admin
guest = guest

編輯許可權檔案authz,使用者admin設定可讀寫許可權,guest設定只讀許可權。

$ cat /opt/svn/spring-hello-world/conf/authz 
[/]
admin = rw
guest = r

編輯svnserve.conf:

$ cat /opt/svn/spring-hello-world/conf/svnserve.conf 
[general]
anon-access = none                     #控制非鑑權使用者訪問版本庫的許可權
auth-access = write                    #控制鑑權使用者訪問版本庫的許可權
password-db = passwd                   #指定使用者名稱口令檔名
authz-db = authz                       #指定許可權配置檔名
realm = spring-hello-world             #指定版本庫的認證域,即在登入時提示的認證域名稱

 4. SVN服務

啟動SVN服務。

$ sudo systemctl start svnserve.service

檢查服務是否啟動成功。

$ ps aux | grep svn
root      16349  0.0  0.1 162180   900 ?        Ss   15:01   0:00 /usr/bin/svnserve --daemon --pid-file=/run/svnserve/svnserve.pid -r /opt/svn

通過netstat可以看到SVN打開了3690埠。

$ sudo netstat -tnlp
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name    
tcp        0      0 0.0.0.0:3690            0.0.0.0:*               LISTEN      16349/svnserve 

設定成開機啟動。

$ sudo systemctl enable svnserve.service

 5. 客戶端測試

客戶端可以通過TortoriseSVN測試。

這時候可能會防火牆問題。如果是防火牆問題,會提示無法連線。

客戶端用telnet無法連線。

C:\Temp>telnet 192.168.12.59 360

用systemctl檢查伺服器的防火牆配置:

$ firewall-cmd --list-all
public (default, active)
  interfaces: eno16777736 eno33554984
  sources: 
  services: dhcpv6-client ssh
  ports: 
  masquerade: no
  forward-ports: 
  icmp-blocks: 
  rich rules: 

可以看到,沒有telnet服務和3690埠。增加telnet伺服器和3690埠:

$ sudo firewall-cmd --permanent --add-service=telnet
$ sudo firewall-cmd --permanent --add-port=3690/tcp
$ sudo firewall-cmd --reload

客戶端再用telnet,應該就可以了。

當體提交或檢出的時候報錯許可權不夠:Error:不能開啟檔案 ‘/home/svn/db/txn-current-lock’: 許可權不夠

此時解決:

執行如下命令對/home/svn目錄下的所有檔案和子目錄新增Users的讀寫許可權(因為windows訪問linux是作為其他使用者訪問的)

[[email protected] test]# chmod -R o+rw /home/svn    #給其他使用者對版本倉庫的讀寫許可權

修改完後 記得重啟svn伺服器

[[email protected] test]# killall svnserve

-bash: killall: 未找到命令  此時可以使用kill 程序號 殺死svn

[[email protected] test]# ps aux | grep svn
root      50285  0.0  0.0 162180  1032 ?        Ss   14:14   0:00 /usr/bin/svnserve --daemon --pid-file=/run/svnserve/svnserve.pid -r /home/svn
root      50697  0.0  0.0 112664   964 pts/0    S+   15:44   0:00 grep --color=auto svn
[[email protected] test]# kill 50285  
[[email protected] test]# ps aux | grep svn
root      50700  0.0  0.0 112664   960 pts/0    S+   15:45   0:00 grep --color=auto svn
[[email protected] test]# svnserve -d -r /home/svn/     
重啟svn並且指定svn根目錄為  /home/svn
[[email protected] test]# ps aux | grep svn
root      50702  0.0  0.0 162180   656 ?        Ss   15:45   0:00 svnserve -d -r /home/svn/
root      50704  0.0  0.0 112664   964 pts/0    S+   15:45   0:00 grep --color=auto svn
然後在客戶端重新提交檔案 顯示成功.