この記事では、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