欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Linux下安裝SVN服務(wù)端的方法步驟

 更新時間:2019年12月06日 10:00:21   作者:魂皓軒  
這篇文章主要介紹了Linux下安裝SVN服務(wù)端的方法步驟,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧

一、yum 安裝

yum install subversion

二、配置

1、創(chuàng)建倉庫

我們在/home下建立一個名為svn的倉庫(repository),以后所有代碼都放在這個下面,創(chuàng)建成功后在svn下面多了幾個文件夾。

[root@localhost /]# cd /home
[root@localhost home]# mkdir svn
[root@localhost home]# svnadmin create /home/svn
[root@localhost home]# ls svn
conf db format hooks locks README.txt

conf文件夾,是存放配置文件的

[root@localhost home]# cd svn/conf
[root@localhost conf]# ls
authz passwd svnserve.conf
  • authz 是權(quán)限控制文件
  • passwd 是帳號密碼文件
  • svnserve.conf 是SVN服務(wù)配置文件

2、配置passwd 文件

[root@localhost conf]# vim passwd 

### This file is an example password file for svnserve.
### Its format is similar to that of svnserve.conf. As shown in the
### example below it contains one section labelled [users].
### The name and password for each user follow, one account per line.
[users]
# harry = harryssecret
# sally = sallyssecret

user1=123456
user2=123456

3、配置authz

[root@localhost conf]# vim authz 

### This file is an example authorization file for svnserve.
### Its format is identical to that of mod_authz_svn authorization
### files.
### As shown below each section defines authorizations for the path and
### (optional) repository specified by the section name.
### The authorizations follow. An authorization line can refer to:
### - a single user,
### - a group of users defined in a special [groups] section,
### - an alias defined in a special [aliases] section,
### - all authenticated users, using the '$authenticated' token,
### - only anonymous users, using the '$anonymous' token,
### - anyone, using the '*' wildcard.
###
### A match can be inverted by prefixing the rule with '~'. Rules can
### grant read ('r') access, read-write ('rw') access, or no access
### ('').

[aliases]
# joe = /C=XZ/ST=Dessert/L=Snake City/O=Snake Oil, Ltd./OU=Research Institute/CN=Joe Average

[groups]
# harry_and_sally = harry,sally
# harry_sally_and_joe = harry,sally,&joe

# [/foo/bar]
# harry = rw
# &joe = r
# * =

# [repository:/baz/fuz]
# @harry_and_sally = rw
# * = r

[/]
user1=rw
user2=r
*=
~ 

4、配置svnserve.conf

[root@localhost conf]# vim svnserve.conf 

### This file controls the configuration of the svnserve daemon, if you
### use it to allow access to this repository. (If you only allow
### access through http: and/or file: URLs, then this file is
### irrelevant.)

### Visit http://subversion.apache.org/ for more information.

[general]
### The anon-access and auth-access options control access to the
### repository for unauthenticated (a.k.a. anonymous) users and
### authenticated users, respectively.
### Valid values are "write", "read", and "none".
### Setting the value to "none" prohibits both reading and writing;
### "read" allows read-only access, and "write" allows complete 
### read/write access to the repository.
### The sample settings below are the defaults and specify that anonymous
### users have read-only access to the repository, while authenticated
### users have read and write access to the repository.
anon-access = read
auth-access = write
### The password-db option controls the location of the password
### database file. Unless you specify a path starting with a /,
### the file's location is relative to the directory containing
### this configuration file.
### If SASL is enabled (see below), this file will NOT be used.
### Uncomment the line below to use the default password file.
password-db = passwd
### The authz-db option controls the location of the authorization
### rules for path-based access control. Unless you specify a path
### starting with a /, the file's location is relative to the the
### directory containing this file. If you don't specify an
### authz-db, no path-based access control is done.
### Uncomment the line below to use the default authorization file.
authz-db = authz
### This option specifies the authentication realm of the repository.
### If two repositories have the same authentication realm, they should
### have the same password database, and vice versa. The default realm
### is repository's uuid.
# realm = My First Repository
realm = /home/svn
### The force-username-case option causes svnserve to case-normalize
### usernames before comparing them against the authorization rules in the
### authz-db file configured above. Valid values are "upper" (to upper-
### case the usernames), "lower" (to lowercase the usernames), and
### "none" (to compare usernames as-is without case conversion, which
### is the default behavior).
# force-username-case = none

[sasl]
### This option specifies whether you want to use the Cyrus SASL
### library for authentication. Default is false.
### This section will be ignored if svnserve is not built with Cyrus
                

最后一行的realm記得改成你的svn目錄
打開注釋時切記前面不要留有空格

三、啟動與停止

[root@localhost conf]# svnserve -d -r /home/svn(啟動)
[root@localhost conf]#kill all svnserve(停止)

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • linux中pwd命令使用詳解

    linux中pwd命令使用詳解

    這篇文章主要詳細(xì)介紹了linux中pwd命令使用方法,及常用的實例分享,非常的全面,有需要的小伙伴們仔細(xì)研讀下吧
    2015-01-01
  • Linux安裝多個jdk版本進(jìn)行切換

    Linux安裝多個jdk版本進(jìn)行切換

    這篇文章主要為大家詳細(xì)介紹了Linux安裝多個jdk版本進(jìn)行切換的相關(guān)資料,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-03-03
  • Linux(CentOS7)使用 RPM 安裝 mysql 8.0.11的教程

    Linux(CentOS7)使用 RPM 安裝 mysql 8.0.11的教程

    這篇文章主要介紹了Linux(CentOS7)使用 RPM 安裝 mysql 8.0.11的教程,本文通過圖文并茂的形式給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2020-03-03
  • Linux系統(tǒng)架構(gòu)類型的5條常用查看命令

    Linux系統(tǒng)架構(gòu)類型的5條常用查看命令

    很多時候我們都需要查看當(dāng)前 Linux 系統(tǒng)是 32 位還是 64 位系統(tǒng)架構(gòu)類型,本文中我將向大家推薦 5 條常用命令,感興趣的小伙伴們可以參考一下
    2016-07-07
  • Linux之系統(tǒng)調(diào)用問題

    Linux之系統(tǒng)調(diào)用問題

    這篇文章主要介紹了Linux之系統(tǒng)調(diào)用問題,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教
    2024-01-01
  • Linux 內(nèi)存釋放命令詳解

    Linux 內(nèi)存釋放命令詳解

    這篇文章主要介紹了Linux 內(nèi)存釋放命令的相關(guān)資料,非常不錯具有參考借鑒價值,需要的朋友可以參考下
    2016-05-05
  • VMware下Centos7橋接方式網(wǎng)絡(luò)配置步驟詳解

    VMware下Centos7橋接方式網(wǎng)絡(luò)配置步驟詳解

    這篇文章主要為大家詳細(xì)介紹了VMware下Centos7橋接方式網(wǎng)絡(luò)配置完整步驟,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2019-06-06
  • Linux ipcs命令的使用

    Linux ipcs命令的使用

    這篇文章主要介紹了Linux ipcs命令的使用,幫助大家更好的學(xué)習(xí)和理解Linux,感興趣的朋友可以了解下
    2020-08-08
  • linux使用lsof命令查看文件打開情況

    linux使用lsof命令查看文件打開情況

    這篇文章主要給大家介紹了關(guān)于在linux中利用lsof命令如何查看文件打開情況的相關(guān)資料,文中通過示例代碼以及圖文介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-03-03
  • Linux服務(wù)器操作系統(tǒng)加固方法

    Linux服務(wù)器操作系統(tǒng)加固方法

    本幫助手冊旨在指導(dǎo)系統(tǒng)管理人員或安全檢查人員進(jìn)行Linux操作系統(tǒng)的安全合規(guī)性檢查和加固,需要的朋友可以參考下
    2018-02-02

最新評論