source: server/other/svnserver.xml@ bfb7882

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since bfb7882 was bfb7882, checked in by Tushar Teredesai <tushar@…>, 19 years ago

More typo fixes

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@4841 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 11.2 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="svnserver" xreflabel="Running a Subversion Server">
9 <?dbhtml filename="svnserver.html"?>
10
11 <sect1info>
12 <othername>$LastChangedBy$</othername>
13 <date>$Date$</date>
14 </sect1info>
15
16 <title>Running a Subversion Server</title>
17
18 <sect2 role="package">
19 <title>Running a Subversion Server</title>
20
21 <para>This section will describe how to set up, administer and secure
22 a <application>Subversion</application> server.</para>
23
24 <bridgehead renderas="sect3">Subversion Server Dependencies</bridgehead>
25
26 <bridgehead renderas="sect4">Required</bridgehead>
27 <para><xref linkend="subversion"/> and
28 <xref linkend="openssh"/></para>
29
30 </sect2>
31
32 <sect2 role="configuration">
33 <title>Setting up a Subversion Server.</title>
34
35 <para>The following instructions will install a
36 <application>Subversion</application> server, which will be set up
37 to use <application>OpenSSH</application> as the secure remote access
38 method, with <command>svnserve</command> available for anonymous
39 access.</para>
40
41 <para>Configuration of the <application>Subversion</application> server
42 consists of the following steps:</para>
43
44 <sect3>
45 <title>1. Setup Users, Groups, and Permissions</title>
46
47 <para>You'll need to be user
48 <systemitem class='username'>root</systemitem> for the initial portion of
49 configuration. Create the <systemitem class="username">svn</systemitem>
50 user and group with the following commands:</para>
51
52<screen role="root"><userinput>groupadd -g 56 svn &amp;&amp;
53useradd -c "SVN Owner" -d /home/svn -m -g svn -s /bin/false -u 56 svn</userinput></screen>
54
55 <para>If you plan to have multiple repositories, you should have a
56 group dedicated to each repository for ease of administration. Create
57 the <systemitem class="groupname">svntest</systemitem> group for the test
58 repository and add the <systemitem class="username">svn</systemitem>
59 user to that group with the following commands:</para>
60
61<screen role="root"><userinput>groupadd -g 57 svntest &amp;&amp;
62usermod -G svntest svn</userinput></screen>
63
64 <para>Additionally you should set <command>umask 002</command> while
65 working with a repository so that all new files will be writable by
66 owner and group. This is made mandatory by creating a wrapper script for
67 <command>svn</command> and <command>svnserve</command>:</para>
68
69<screen role="root"><userinput>mv /usr/bin/svn /usr/bin/svn.orig &amp;&amp;
70mv /usr/bin/svnserve /usr/bin/svnserve.orig &amp;&amp;
71cat &gt;&gt; /usr/bin/svn &lt;&lt; "EOF"
72<literal>#!/bin/sh
73umask 002
74/usr/bin/svn.orig "$@"</literal>
75EOF
76cat &gt;&gt; /usr/bin/svnserve &lt;&lt; "EOF"
77<literal>#!/bin/sh
78umask 002
79/usr/bin/svnserve.orig "$@"</literal>
80EOF
81chmod 0755 /usr/bin/svn{,serve}</userinput></screen>
82
83 <note>
84 <para>If you use <application>Apache</application> for working with
85 the repository over HTTP, even for anonymous access, you should wrap
86 <command>/usr/sbin/httpd</command> in a similar script.</para>
87 </note>
88
89 </sect3>
90
91 <sect3>
92 <title>2. Create a Subversion repository.</title>
93
94 <para>With subversion-1.1.0 and greater, a new type of repository
95 data-store is available, FSFS. There is a tradeoff for speed with
96 the new backend, however, the repository can now be placed on a
97 network mount, and any corruption does not require an admin to
98 recover the repository. For more information and comparison between
99 FSFS and BDB, see <ulink
100 url="http://svnbook.red-bean.com/svnbook-1.1/ch05.html#svn-ch-5-sect-1.2.A"/>.
101 Optionally you can pass <option>bdb</option> in place of
102 <option>fsfs</option> in the following command to create a
103 BerkeleyDB data-store.</para>
104
105 <para>Create a new <application>Subversion</application> repository with
106 the following commands:</para>
107
108<screen role="root"><userinput>install -d -m0755 /srv &amp;&amp;
109install -d -m0755 -o svn -g svn /srv/svn/repositories &amp;&amp;
110svnadmin create --fs-type fsfs /srv/svn/repositories/svntest</userinput></screen>
111
112 <para>Now that the repository is created, we need to populate it
113 with something useful. You'll need to have a predefined directory
114 layout setup exactly as you want your repository to look. For
115 example, here is a sample BLFS layout setup with a root of
116 <filename>svntest/</filename>. You'll need to setup a directory
117 tree similar to the following:</para>
118
119<screen><literal> svntest/ # The name of the repository
120 trunk/ # Contains the existing source tree
121 BOOK/
122 bootscripts/
123 edguide/
124 patches/
125 scripts/
126 branches/ # Needed for additional branches
127 tags/ # Needed for tagging release points</literal></screen>
128
129 <para>Once you've created your directory layout as shown above, you
130 are ready to do the initial import:</para>
131
132<screen role="root"><userinput>svn import -m "Initial import." \
133 <replaceable>[/path/to/source/tree]</replaceable> \
134 file:///srv/svn/repositories/svntest</userinput></screen>
135
136 <para>Now go ahead and change owner and group information on the
137 repository, and add an unprivileged user to the
138 <systemitem class="groupname">svn</systemitem> and
139 <systemitem class="groupname">svntest</systemitem> groups:</para>
140
141<screen role="root"><userinput>chown -R svn:svntest /srv/svn/repositories/svntest &amp;&amp;
142chmod -R g+w /srv/svn/repositories/svntest &amp;&amp;
143chmod g+s /srv/svn/repositories/svntest/db &amp;&amp;
144usermod -G svn,svntest,<replaceable>[insert existing groups]</replaceable> <replaceable>[username]</replaceable></userinput></screen>
145
146 <para><systemitem class="groupname">svntest</systemitem> is the group
147 assigned to the svntest repository. As mentioned earlier, this eases
148 administration of multiple repositories when using
149 <application>OpenSSH</application> for authentication. Going forward,
150 you'll need to add your unprivileged user, and any additional users that
151 you wish to have write access to the repository, to the
152 <systemitem class="groupname">svn</systemitem> and
153 <systemitem class="groupname">svntest</systemitem> groups.</para>
154
155 <para>In addition, you'll notice that the new repository's
156 <filename>db</filename> directory is set-groupID. If the reasoning is
157 not immediately obvious, when using any external authentication method
158 (such as <command>ssh</command>), the sticky bit is set so that all
159 new files will be owned by the user, but group of
160 <systemitem class="groupname">svntest</systemitem>. Anyone in the
161 <systemitem class="groupname">svntest</systemitem> group can create
162 files, but still give the entire group write access to those
163 files. This avoids locking out other users from the repository.</para>
164
165 <para>Now, go ahead and return to an unprivileged user account, and take a
166 look at your new repository using <command>svnlook</command>:</para>
167
168<screen><userinput>svnlook tree /srv/svn/repositories/svntest/</userinput></screen>
169
170 <note>
171 <para>You may need to log out and back in again to refresh your group
172 memberships. '<command>su <replaceable>[username]</replaceable></command>'
173 should work around this as well.</para>
174 </note>
175
176 </sect3>
177
178 <sect3>
179 <title>3. Configure the Server</title>
180
181 <para>As mentioned previously, these instructions will configure the
182 server to use only <command>ssh</command> for write access to the
183 repository and to provide anonymous access using
184 <command>svnserve</command>. There are several other ways to provide
185 access to the repository. These additional configurations are best
186 explained at <ulink url="http://svnbook.red-bean.com/"/>.</para>
187
188 <para>Access configuration needs to be done for each repository.
189 Create the <filename>svnserve.conf</filename> file for the svntest
190 repository using the following commands:</para>
191
192<screen role="root"><userinput>cp /srv/svn/repositories/svntest/conf/svnserve.conf \
193 /srv/svn/repositories/svntest/conf/svnserve.conf.default &amp;&amp;
194cat &gt; /srv/svn/repositories/svntest/conf/svnserve.conf &lt;&lt; "EOF"
195<literal>[general]
196anon-access = read
197auth-access = write</literal>
198EOF</userinput></screen>
199
200 <para>There is not a lot to the configuration file at all. You'll
201 notice that only the general section is required. Take a look at the
202 <filename>svnserve.conf.default</filename> file for information on using
203 <command>svnserve</command>'s built-in authentication method.</para>
204
205 </sect3>
206
207 <sect3 id="svnserver-init">
208 <title>4. Starting the Server</title>
209
210 <para>There are a couple of ways to start <command>svnserve</command>.
211 The most common way is to start it as an <command>inetd</command> or
212 <command>xinetd</command> process. Alternately, you can use a
213 bootscript to start the service at startup.</para>
214
215 <note>
216 <para>If you do not wish to provide anonymous access to your svn
217 repositories or use <command>svnserve</command>'s built-in
218 authentication, you do not need to run
219 <command>svnserve</command>.</para>
220 </note>
221
222 <para>If you use <command>inetd</command>, add a line to
223 <filename>/etc/inetd.conf</filename> using the following
224 commands:</para>
225
226 <indexterm zone="svnserver svnserver-init">
227 <primary sortas="e-etc-inetd.conf">/etc/inetd.conf</primary>
228 </indexterm>
229
230<screen role="root"><userinput>cat &gt;&gt; /etc/inetd.conf &lt;&lt; "EOF"
231<literal>svn stream tcp nowait svn /usr/bin/svnserve svnserve -i</literal>
232EOF</userinput></screen>
233
234 <para>If you use <command>xinetd</command>, the following command will
235 create the <application>Subversion</application> server file as
236 <filename>/etc/xinetd.d/svn</filename>:</para>
237
238 <indexterm zone="svnserver svnserver-init ">
239 <primary sortas="e-etc-xinetd.d-svn">/etc/xinetd.d/svn</primary>
240 </indexterm>
241
242<screen role="root"><userinput>cat &gt;&gt; /etc/xinetd.d/svn &lt;&lt; "EOF"
243<literal># Begin /etc/xinetd.d/svn
244
245service svn
246{
247 port = 3690
248 socket_type = stream
249 protocol = tcp
250 wait = no
251 user = svn
252 server = /usr/bin/svnserve
253 server_args = -i -r /srv/svn/repositories
254}
255
256# End /etc/xinetd.d/svn</literal>
257EOF</userinput></screen>
258
259 <para>Finally, if you wish to simply start the sever at
260 startup, install the svn bootscript included in the
261 <xref linkend="intro-important-bootscripts"/> package.</para>
262
263 <indexterm zone="svnserver svnserver-init">
264 <primary sortas="f-svn">svn</primary>
265 </indexterm>
266
267<screen role="root"><userinput>make install-svn</userinput></screen>
268
269 </sect3>
270
271 </sect2>
272
273</sect1>
Note: See TracBrowser for help on using the repository browser.