1 | <?xml version="1.0" encoding="ISO-8859-1"?>
|
---|
2 | <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
|
---|
3 | "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
|
---|
4 | <!ENTITY % general-entities SYSTEM "../../general.ent">
|
---|
5 | %general-entities;
|
---|
6 |
|
---|
7 | ]>
|
---|
8 |
|
---|
9 | <sect1 id="cvsserver" xreflabel="Running a CVS Server">
|
---|
10 | <sect1info>
|
---|
11 | <othername>$LastChangedBy$</othername>
|
---|
12 | <date>$Date$</date>
|
---|
13 | </sect1info>
|
---|
14 | <?dbhtml filename="cvsserver.html"?>
|
---|
15 | <title>Running a CVS server</title>
|
---|
16 |
|
---|
17 | <sect2>
|
---|
18 | <title>Running a <acronym>CVS</acronym> server</title>
|
---|
19 |
|
---|
20 | <para>This section will describe how to set up, administer and secure
|
---|
21 | a <acronym>CVS</acronym> server.</para>
|
---|
22 |
|
---|
23 | <sect3><title><application>CVS server</application> dependencies</title>
|
---|
24 | <sect4><title>Required</title>
|
---|
25 | <para><xref linkend="cvs"/> and <xref linkend="openssh"/></para></sect4>
|
---|
26 | </sect3>
|
---|
27 |
|
---|
28 | </sect2>
|
---|
29 |
|
---|
30 | <sect2>
|
---|
31 | <title>Setting up a <acronym>CVS</acronym> server.</title>
|
---|
32 |
|
---|
33 | <para>A <acronym>CVS</acronym> server will be set up using OpenSSH
|
---|
34 | as the remote access method. Other access methods, including :pserver: and
|
---|
35 | :server: will not be used for write access to the <acronym>CVS</acronym>
|
---|
36 | repository. The :pserver: method sends clear text passwords over the network
|
---|
37 | and the :server: method is not supported in all <acronym>CVS</acronym> ports.
|
---|
38 | Instructions for anonymous, read only <acronym>CVS</acronym> access using
|
---|
39 | :pserver: can be found at the end of this section.</para>
|
---|
40 |
|
---|
41 | <para>Configuration of the <acronym>CVS</acronym> server consists of four
|
---|
42 | steps:</para>
|
---|
43 |
|
---|
44 | <sect3><title>1. Create a repository.</title>
|
---|
45 | <para>Create a new <acronym>CVS</acronym> repository with the following
|
---|
46 | commands:</para>
|
---|
47 | <screen><userinput><command>mkdir /srv/cvsroot &&
|
---|
48 | chmod 1777 /srv/cvsroot &&
|
---|
49 | export CVSROOT=/srv/cvsroot &&
|
---|
50 | cvs init</command></userinput></screen></sect3>
|
---|
51 |
|
---|
52 | <sect3><title>2. Import source code into the repository.</title>
|
---|
53 | <para>Import a source module into the repository with the following
|
---|
54 | commands, issued from a user account on the same machine as the
|
---|
55 | <acronym>CVS</acronym> repository:</para>
|
---|
56 |
|
---|
57 | <screen><userinput><command>cd <replaceable>[sourcedir]</replaceable> &&
|
---|
58 | cvs import -m "<replaceable>[repository test]</replaceable>" <replaceable>[cvstest]</replaceable> <replaceable>[vendortag]</replaceable> <replaceable>[releasetag]</replaceable></command></userinput></screen></sect3>
|
---|
59 |
|
---|
60 | <sect3><title>3. Verify local repository access.</title>
|
---|
61 | <para>Test access to the <acronym>CVS</acronym> repository from the same user
|
---|
62 | account with the following command:</para>
|
---|
63 |
|
---|
64 | <screen><userinput><command>cvs co cvstest</command></userinput></screen></sect3>
|
---|
65 |
|
---|
66 | <sect3><title>4. Verify remote repository access.</title>
|
---|
67 | <para>Test access to the <acronym>CVS</acronym> repository from a remote
|
---|
68 | machine using a user account that has <command>ssh</command> access to the
|
---|
69 | <acronym>CVS</acronym> server with the following commands:</para>
|
---|
70 | <note><para>Replace <replaceable>[servername]</replaceable> with the
|
---|
71 | <acronym>IP</acronym> address or host name of the <acronym>CVS</acronym>
|
---|
72 | repository machine. You will be prompted for the user's shell account password
|
---|
73 | before <acronym>CVS</acronym> checkout can continue.</para></note>
|
---|
74 |
|
---|
75 |
|
---|
76 | <screen><userinput><command>export CVS_RSH=/usr/bin/ssh &&
|
---|
77 | cvs -d:ext:<replaceable>[servername]</replaceable>:/srv/cvsroot co cvstest</command></userinput></screen></sect3>
|
---|
78 | </sect2>
|
---|
79 | <sect2>
|
---|
80 | <title>Configuring <acronym>CVS</acronym> for anonymous read only access.</title>
|
---|
81 |
|
---|
82 | <para><acronym>CVS</acronym> can be set up to allow anonymous read only access
|
---|
83 | using the :pserver: method by logging on as root and executing the following
|
---|
84 | commands:</para>
|
---|
85 |
|
---|
86 | <screen><userinput><command>(grep anonymous /etc/passwd || useradd anonymous -s /bin/false) &&
|
---|
87 | echo anonymous: > /srv/cvsroot/CVSROOT/passwd &&
|
---|
88 | echo anonymous > /srv/cvsroot/CVSROOT/readers</command></userinput></screen>
|
---|
89 |
|
---|
90 | <para>If you use <command>inetd</command>, the following command will add the
|
---|
91 | <application><acronym>CVS</acronym></application> entry to <filename>/etc/inetd.conf</filename>:</para>
|
---|
92 |
|
---|
93 | <screen><userinput><command>echo "2401 stream tcp nowait root /usr/bin/cvs cvs -f \
|
---|
94 | --allow-root=/srv/cvsroot pserver" >> /etc/inetd.conf</command></userinput></screen>
|
---|
95 |
|
---|
96 | <para>Issue a <command>killall -HUP inetd</command> to reread the changed
|
---|
97 | <filename>inetd.conf</filename> file.</para>
|
---|
98 |
|
---|
99 | <para>If you use <command>xinetd</command>, the following command will create the
|
---|
100 | <acronym>CVS</acronym> file as <filename>/etc/xinetd.d/cvspserver</filename>:</para>
|
---|
101 |
|
---|
102 | <screen><userinput><command>cat >> /etc/xinetd.d/cvspserver << "EOF"</command>
|
---|
103 | # Begin /etc/xinetd.d/cvspserver
|
---|
104 |
|
---|
105 | service cvspserver
|
---|
106 | {
|
---|
107 | port = 2401
|
---|
108 | socket_type = stream
|
---|
109 | protocol = tcp
|
---|
110 | wait = no
|
---|
111 | user = root
|
---|
112 | passenv = PATH
|
---|
113 | server = /usr/bin/cvs
|
---|
114 | server_args = -f --allow-root=/srv/cvsroot pserver
|
---|
115 | }
|
---|
116 |
|
---|
117 | # End /etc/xinetd.d/cvspserver
|
---|
118 | <command>EOF</command></userinput></screen>
|
---|
119 | <para>Issue a <command>/etc/rc.d/init.d/xinetd reload</command> to reread the changed
|
---|
120 | <filename>xinetd.conf</filename> file.</para>
|
---|
121 |
|
---|
122 | <para>Testing anonymous access to the new repository requires an account
|
---|
123 | on another machine that can reach the <acronym>CVS</acronym> server via
|
---|
124 | network. No account on the <acronym>CVS</acronym> repository is needed. To
|
---|
125 | test anonymous access to the <acronym>CVS</acronym> repository, log in to
|
---|
126 | another machine as an unprivileged user and execute the following command:
|
---|
127 | </para>
|
---|
128 |
|
---|
129 | <screen><userinput><command>cvs -d:pserver:anonymous@<replaceable>[servername]</replaceable>:/srv/cvsroot co cvstest</command></userinput></screen>
|
---|
130 | <note><para>Replace <replaceable>[servername]</replaceable> with the
|
---|
131 | <acronym>IP</acronym> address or hostname of the
|
---|
132 | <acronym>CVS</acronym> server.</para></note>
|
---|
133 |
|
---|
134 | </sect2>
|
---|
135 |
|
---|
136 | <sect2>
|
---|
137 | <title>Command explanations</title>
|
---|
138 |
|
---|
139 | <para><command>mkdir /srv/cvsroot</command>: Create the <acronym>CVS</acronym>
|
---|
140 | repository directory.</para>
|
---|
141 |
|
---|
142 | <para><command>chmod 1777 /srv/cvsroot</command>: Set sticky bit permissions for
|
---|
143 | <envar>CVSROOT</envar>.</para>
|
---|
144 |
|
---|
145 | <para><command>export CVSROOT=/srv/cvsroot</command>: Specify new <envar>CVSROOT
|
---|
146 | </envar> for all <command>cvs</command> commands.</para>
|
---|
147 |
|
---|
148 | <para><command>cvs init</command>: Initialize the new <acronym>CVS</acronym>
|
---|
149 | repository.</para>
|
---|
150 |
|
---|
151 | <para><command>cvs import -m "repository test" cvstest vendortag
|
---|
152 | releasetag</command>: All source code modules must be imported
|
---|
153 | into the <acronym>CVS</acronym> repository before use, with the
|
---|
154 | <command>cvs import</command> command. The <userinput>-m</userinput>
|
---|
155 | flags specifies an initial descriptive entry for the new module.
|
---|
156 | The "cvstest" parameter is the name used for the module in all
|
---|
157 | subsequent <command>cvs</command> commands. The "vendortag" and "releasetag"
|
---|
158 | parameters are used to further identify each <acronym>CVS</acronym> module and
|
---|
159 | are mandatory whether used or not.</para>
|
---|
160 |
|
---|
161 | <para><command>(grep anonymous /etc/passwd || useradd anonymous -s
|
---|
162 | /bin/false)</command>: Check for an existing anonymous user and
|
---|
163 | create one if not found.</para>
|
---|
164 |
|
---|
165 | <para><command>echo anonymous: > /srv/cvsroot/CVSROOT/passwd
|
---|
166 | </command>: Add the anonymous user to the <acronym>CVS</acronym> passwd file,
|
---|
167 | which is unused for anything else in this configuration.</para>
|
---|
168 |
|
---|
169 | <para><command>echo anonymous > /srv/cvsroot/CVSROOT/readers</command>: Add the
|
---|
170 | anonymous user to the <acronym>CVS</acronym> readers file, a list of
|
---|
171 | users who have read only access to the repository.</para>
|
---|
172 |
|
---|
173 | </sect2>
|
---|
174 |
|
---|
175 | </sect1>
|
---|