SVNのUbuntu16.04.5LTSインストールプロセス

この記事では、UbuntuシステムでのSVNのセットアッププロセスを簡単に紹介します。

ソースを更新

sudo apt-get update

SVNをインストール

sudo apt-get install subversion

フォルダーを作る

sudo mkdir /home/svn
sudo mkdir /home/svn/repository
sudo chmod -R 777/home/svn/repository
sudo svnadmin create /home/svn/repository
cd /home/svn/repository/
sudo chmod -R 777 db

**svnserve.conf **を変更します

cd /home/svn/repository/conf/
sudo vi svnserve.conf 

これらの4行を次のように変更します

anon-access =匿名ユーザーは読めません
auth-access =ユーザーが書き込むことができる書き込み権限
password-db =passwdパスワードファイルはpasswdです
authz-db =authz権限ファイルはauthzです

### users have read and write access to the repository.
anon-access = none
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
### directory containing this file. The specified path may be a
### repository relative URL(^/) or an absolute file:// URL to a text
### file in a Subversion repository. 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
### The groups-db option controls the location of the groups file.

パスワードファイルを変更し、アクセスユーザーを追加します

sudo vi passwd

[ users]
# harry = harryssecret
# sally = sallyssecret
lidata = lidata429

ユーザーにディレクトリ権限を追加する

sudo vi authz

[ 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
[ /]
lidata=rw

サービスを開始し、ポート81を監視します

sudo svnserve -d -r /home/svn --listen-port 81

svnが開始されているかどうかを確認します

ps -ef | grep svnserve

故障中

kill all svnserve

総括する

上記は、編集者が紹介したUbuntu16.04.5LTSにSVNをインストールするプロセスです。お役に立てば幸いです。ご不明な点がございましたら、メッセージを残してください。編集者から返信があります。 ZaLou.Cnのウェブサイトをご支援いただきありがとうございます。
この記事があなたに役立つと思うなら、再版を歓迎します、出典を示してください、ありがとう!

Recommended Posts

SVNのUbuntu16.04.5LTSインストールプロセス
CentOS8のグラフィカルインストール
グラフィカルなcentosインストールの詳細なプロセス
Oracle11gのCentos7サイレントインストール
OpenCVインストールのPythonバージョン
DockerのCentOS環境インストール
CentOS7はopenjdk、tomcat、mysqlプロセスの紹介をインストールします
Centos7インストールtomcatプロセスの紹介
CentOS8 Linux 8.0.1905のインストールプロセス(図)
UbuntuでのSubversion(SVN)のクイックインストールと構成の詳細な説明
Centos7のインストールとJenkinsの構成
ubuntuでのJenkinsのハッピーインストール
Hyper-VインストールCentOS8問題の分析
VMware Ubuntuのインストールの詳細なプロセス(プロテスト)
ダメンデータベースチュートリアルのCentos7インストール
Centos6.5のインストールとKVMの展開
CentOS8インストールMariaDB詳細チュートリアル
ジェンキンス学習のcentos6.9の下でのインストール
Ubuntuでのdebパッケージのインストール
k8sクラスターのバイナリインストール(1)-開始
001.エンタープライズレベルのCentOS7.6オペレーティングシステムのインストール
UbuntuでのDockerCEのインストール