source: server/other/cvsserver.xml@ 266724ee

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 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 266724ee was 266724ee, checked in by Igor Živković <igor@…>, 20 years ago

Fixed replaceable tags and removed a redundant CVSROOT export on the cvsserver page.

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

  • Property mode set to 100644
File size: 7.3 KB
RevLine 
[0931098]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
[6ff0105]9<sect1 id="cvsserver" xreflabel="Running a CVS Server">
[a0f03b0]10<sect1info>
[5cd0959d]11<othername>$LastChangedBy$</othername>
12<date>$Date$</date>
[a0f03b0]13</sect1info>
[00bb024c]14<?dbhtml filename="cvsserver.html"?>
[dcc89bf1]15<title>Running a CVS server</title>
[f45b1953]16
[0931098]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
21a <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
34as the remote access method. Other access methods, including :pserver: and
35:server: will not be used for write access to the <acronym>CVS</acronym>
36repository. The :pserver: method sends clear text passwords over the network
37and the :server: method is not supported in all <acronym>CVS</acronym> ports.
38Instructions 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
42steps:</para>
43
44<sect3><title>1. Create a repository.</title>
45<para>Create a new <acronym>CVS</acronym> repository with the following
46commands:</para>
[affc260]47<screen><userinput><command>mkdir /srv/cvsroot &amp;&amp;
48chmod 1777 /srv/cvsroot &amp;&amp;
49export CVSROOT=/srv/cvsroot &amp;&amp;
[0931098]50cvs 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
54commands, issued from a user account on the same machine as the
55<acronym>CVS</acronym> repository:</para>
56
[266724ee]57<screen><userinput><command>cd <replaceable>[sourcedir]</replaceable> &amp;&amp;
58cvs import -m "<replaceable>[repository test]</replaceable>" <replaceable>[cvstest]</replaceable> <replaceable>[vendortag]</replaceable> <replaceable>[releasetag]</replaceable></command></userinput></screen></sect3>
[0931098]59
60<sect3><title>3. Verify local repository access.</title>
61<para>Test access to the <acronym>CVS</acronym> repository from the same user
62account 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
68machine 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>
72repository machine. You will be prompted for the user's shell account password
73before <acronym>CVS</acronym> checkout can continue.</para></note>
74
75
76<screen><userinput><command>export CVS_RSH=/usr/bin/ssh &amp;&amp;
[affc260]77cvs -d:ext:<replaceable>[servername]</replaceable>:/srv/cvsroot co cvstest</command></userinput></screen></sect3>
[0931098]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
83using the :pserver: method by logging on as root and executing the following
84commands:</para>
85
86<screen><userinput><command>(grep anonymous /etc/passwd || useradd anonymous -s /bin/false) &amp;&amp;
[affc260]87echo anonymous: &gt; /srv/cvsroot/CVSROOT/passwd &amp;&amp;
88echo anonymous &gt; /srv/cvsroot/CVSROOT/readers</command></userinput></screen>
[0931098]89
90<para>If you use <command>inetd</command>, the following command will add the
91pserver entry to <filename>/etc/inetd.conf</filename>:</para>
92
93<screen><userinput><command>echo "2401 stream tcp nowait root /usr/bin/cvs cvs -f \
[affc260]94 --allow-root=/srv/cvsroot pserver" &gt;&gt; /etc/inetd.conf</command></userinput></screen>
[0931098]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 add the
100pserver entry to <filename>/etc/xinetd.conf</filename>:</para>
101
102<screen><userinput><command>cat &gt;&gt; /etc/xinetd.conf &lt;&lt; "EOF"</command>
103 service cvspserver
104 {
105 port = 2401
106 socket_type = stream
107 protocol = tcp
108 wait = no
109 user = root
110 passenv = PATH
111 server = /usr/bin/cvs
[affc260]112 server_args = -f --allow-root=/srv/cvsroot pserver
[0931098]113 }
114<command>EOF</command></userinput></screen>
115<para>Issue a <command>/etc/rc.d/init.d/xinetd reload</command> to reread the changed
116<filename>xinetd.conf</filename> file.</para>
117
118<para>Testing anonymous access to the new repository requires an account
119on another machine that can reach the <acronym>CVS</acronym> server via
120network. No account on the <acronym>CVS</acronym> repository is needed. To
121test anonymous access to the <acronym>CVS</acronym> repository, log in to
122another machine as an unprivileged user and execute the following command:
123</para>
124
[affc260]125<screen><userinput><command>cvs -d:pserver:anonymous@<replaceable>[servername]</replaceable>:/srv/cvsroot co cvstest</command></userinput></screen>
126<note><para>Replace <replaceable>[servername]</replaceable> with the
127<acronym>IP</acronym> address or hostname of the
128<acronym>CVS</acronym> server.</para></note>
[0931098]129
130</sect2>
131
132<sect2>
133<title>Command explanations</title>
134
[affc260]135<para><command>mkdir /srv/cvsroot</command>: Create the <acronym>CVS</acronym>
[0931098]136repository directory.</para>
137
[affc260]138<para><command>chmod 1777 /srv/cvsroot</command>: Set sticky bit permissions for
[0931098]139<envar>CVSROOT</envar>.</para>
140
[affc260]141<para><command>export CVSROOT=/srv/cvsroot</command>: Specify new <envar>CVSROOT
[0931098]142</envar> for all <command>cvs</command> commands.</para>
143
144<para><command>cvs init</command>: Initialize the new <acronym>CVS</acronym>
145repository.</para>
146
147<para><command>cvs import -m "repository test" cvstest vendortag
148releasetag</command>: All source code modules must be imported
149into the <acronym>CVS</acronym> repository before use, with the
150<command>cvs import</command> command. The <userinput>-m</userinput>
151flags specifies an initial descriptive entry for the new module.
152The "cvstest" parameter is the name used for the module in all
153subsequent <command>cvs</command> commands. The "vendortag" and "releasetag"
154parameters are used to further identify each <acronym>CVS</acronym> module and
155are mandatory whether used or not.</para>
156
157<para><command>(grep anonymous /etc/passwd || useradd anonymous -s
158/bin/false)</command>: Check for an existing anonymous user and
159create one if not found.</para>
160
[affc260]161<para><command>echo anonymous: &gt; /srv/cvsroot/CVSROOT/passwd
[0931098]162</command>: Add the anonymous user to the <acronym>CVS</acronym> passwd file,
163which is unused for anything else in this configuration.</para>
164
[affc260]165<para><command>echo anonymous &gt; /srv/cvsroot/CVSROOT/readers</command>: Add the
[0931098]166anonymous user to the <acronym>CVS</acronym> readers file, a list of
167users who have read only access to the repository.</para>
168
169</sect2>
[f45b1953]170
171</sect1>
Note: See TracBrowser for help on using the repository browser.