Changeset 5bc2a01
- Timestamp:
- 09/17/2003 03:56:58 PM (20 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 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/inkscape-core-mods, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/python-mods, qt5new, systemd-11177, systemd-13485, trunk, upgradedb, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 70919be
- Parents:
- 2da087b
- Files:
-
- 1 deleted
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
introduction/welcome/changelog.xml
r2da087b r5bc2a01 11 11 <itemizedlist> 12 12 13 <listitem><para>September 17th, 2003 [igor]: update to 14 xinetd-2.3.12.</para></listitem> 15 13 16 <listitem><para>September 17th, 2003 [larry]: updated to 14 17 ncftp-3.1.6.</para></listitem> … … 16 19 <listitem><para>September 16th, 2003 [larry]: added 17 20 libgsf-1.8.2.</para></listitem> 21 22 <listitem><para>September 16th, 2003 [igor]: update to KDE-3.1.4 23 (incomplete - left for Bruce to review and finish).</para></listitem> 18 24 19 25 <listitem><para>September 16th, 2003 [larry]: update to OpenSSH--3.7p1, -
server/other/xinetd.xml
r2da087b r5bc2a01 7 7 &xinetd-exp; 8 8 &xinetd-config; 9 &xinetd-config-exp;10 9 &xinetd-desc; 11 10 -
server/other/xinetd/xinetd-config.xml
r2da087b r5bc2a01 1 1 <sect2> 2 2 <title>Configuring xinetd</title> 3 <para>Create the <filename>xinetd.conf</filename> file with the following commands: </para>4 5 <para><screen><userinput>cp /etc/xinetd.conf /etc/xinetd.conf.bak6 sed -e 's/etc/sbin/g' xinetd/sample.conf > /etc/xinetd.conf</userinput></screen></para>7 3 8 4 <sect3><title>Config files</title> 5 9 6 <para><filename>/etc/xinetd.conf</filename></para> 10 7 8 </sect3> 9 10 <sect3><title>Configuration Information</title> 11 12 <para>Create the <filename>xinetd.conf</filename> file with the following commands:</para> 13 14 <screen><userinput><command>cp /etc/xinetd.conf /etc/xinetd.conf.bak</command></userinput></screen> 15 16 <para>Insure the path to all daemons is <filename 17 class="directory">/usr/sbin</filename>, rather than the default path of 18 <filename class="directory">/usr/etc</filename>:</para> 19 20 <screen><userinput><command>sed -e 's/etc/sbin/g' xinetd/sample.conf > /etc/xinetd.conf</command> 21 </userinput></screen> 22 23 <para>The format of the <filename>/etc/xinetd.conf</filename> is 24 documented in the xinetd.conf man page. Further information can be 25 found at <ulink url="http://www.xinetd.org"/>.</para> 26 11 27 <para>Create the xinetd boot script:</para> 12 <para><screen><userinput>cat > /etc/rc.d/init.d/xinetd << "EOF"</userinput> 28 29 <screen><userinput><command>cat > /etc/rc.d/init.d/xinetd << "EOF" 13 30 #!/bin/bash 14 31 # Begin $rc_base/init.d/xinetd … … 44 61 esac 45 62 # End $rc_base/init.d/xinetd 46 <userinput>EOF</userinput></screen></para> 63 EOF 64 chmod 754 /etc/rc.d/init.d/xinetd</command></userinput></screen> 47 65 48 66 <para>Add the run level symlinks:</para> 49 67 50 <para><screen><userinput>chmod 754 /etc/rc.d/init.d/xinetd && 51 ln -s /etc/rc.d/init.d/xinetd /etc/rc.d/rc0.d/K49xinetd && 68 <screen><userinput><command>ln -s /etc/rc.d/init.d/xinetd /etc/rc.d/rc0.d/K49xinetd && 52 69 ln -s /etc/rc.d/init.d/xinetd /etc/rc.d/rc1.d/K49xinetd && 53 70 ln -s /etc/rc.d/init.d/xinetd /etc/rc.d/rc2.d/K49xinetd && … … 55 72 ln -s /etc/rc.d/init.d/xinetd /etc/rc.d/rc4.d/S23xinetd && 56 73 ln -s /etc/rc.d/init.d/xinetd /etc/rc.d/rc5.d/S23xinetd && 57 ln -s /etc/rc.d/init.d/xinetd /etc/rc.d/rc6.d/K49xinetd 58 </userinput></screen></para> 74 ln -s /etc/rc.d/init.d/xinetd /etc/rc.d/rc6.d/K49xinetd</command></userinput></screen> 59 75 60 76 <para>Now, we'll use our new boot script to start xinetd: </para> 61 <para><screen><userinput>/etc/rc.d/init.d/xinetd start</userinput></screen></para> 77 78 <screen><userinput><command>/etc/rc.d/init.d/xinetd start</command></userinput></screen> 62 79 63 80 <para>Checking the <filename>/var/log/daemon.log</filename> file 64 should prove quite entertaining. 65 similar to the following: 81 should prove quite entertaining. This file may contain entries 82 similar to the following:</para> 66 83 67 < para><screen><userinput>Aug 22 21:40:21 dps10 xinetd[2696]: Server /usr/sbin/in.rlogind is not84 <screen><userinput><command>Aug 22 21:40:21 dps10 xinetd[2696]: Server /usr/sbin/in.rlogind is not 68 85 executable [line=29] 69 86 Aug 22 21:40:21 dps10 xinetd[2696]: Error parsing attribute server - 70 87 DISABLING SERVICE [line=29] 71 88 Aug 22 21:40:21 dps10 xinetd[2696]: Server /usr/sbin/in.rshd is not 72 executable [line=42]</ userinput></screen></para>89 executable [line=42]</command></userinput></screen> 73 90 74 91 <para>These errors are due to the fact that we don't have most of the 75 servers that xinetd is trying to control installed yet.</para></sect3> 92 servers that xinetd is trying to control installed yet.</para> 93 94 </sect3> 95 76 96 </sect2> 77 -
server/other/xinetd/xinetd-desc.xml
r2da087b r5bc2a01 3 3 4 4 <para>The xinetd package contains 5 < userinput>xinetd</userinput>,6 < userinput>itox</userinput> and7 < userinput>xconv.pl</userinput>.</para></sect2>5 <command>xinetd</command>, 6 <command>itox</command> and 7 <command>xconv.pl</command>.</para></sect2> 8 8 9 9 <sect2><title>Description</title> 10 10 11 11 <sect3><title>xinetd</title> 12 <para>xinetd is the internet services daemon.</para></sect3> 12 <para><command>xinetd</command> is the internet services daemon.</para></sect3> 13 13 14 <sect3><title>itox</title> 14 <para> itoxis a utility used for converting inetd.conf files to15 <para><command>itox</command> is a utility used for converting inetd.conf files to 15 16 xinetd.conf format.</para></sect3> 17 16 18 <sect3><title>xconv.pl</title> 17 <para>xconv.pl is a perl script used for converting inetd.conf files 18 to xinetd.conf format, similar to itox.</para></sect3> 19 <para><command>xconv.pl</command> is a perl script used for converting inetd.conf files 20 to xinetd.conf format, similar to <command>itox</command>.</para></sect3> 21 19 22 </sect2> 20 -
server/other/xinetd/xinetd-exp.xml
r2da087b r5bc2a01 1 1 <sect2> 2 <title> Installation command explanations</title>2 <title>Command explanations</title> 3 3 4 <para><userinput>./configure --prefix=/usr</userinput> : Change the default installation directory of <filename>/usr/local</filename>.</para> 4 <para><command>./configure --prefix=/usr</command> : Change 5 the default installation directory of 6 <filename class="directory">/usr/local</filename>.</para> 5 7 6 8 </sect2> -
server/other/xinetd/xinetd-inst.xml
r2da087b r5bc2a01 1 1 <sect2> 2 <title>Installation of xinetd</title>2 <title>Installation of <application>xinetd</application></title> 3 3 4 <para>Install xinetd by running the following commands:</para> 5 <para><screen><userinput>./configure --prefix=/usr && 4 <para>Install <application>xinetd</application> by running the following commands:</para> 5 6 <screen><userinput><command>./configure --prefix=/usr && 6 7 make && 7 make install</userinput></screen></para> 8 make install</command></userinput></screen> 9 8 10 </sect2> 9 -
server/other/xinetd/xinetd-intro.xml
r2da087b r5bc2a01 1 1 <sect2> 2 <title>Introduction to xinetd</title>2 <title>Introduction to <application>xinetd</application></title> 3 3 4 <screen>Download location (HTTP): <ulink url="&xinetd-download-http;"/> 5 Download location (FTP): <ulink url="&xinetd-download-ftp;"/> 6 Version used: &xinetd-version; 7 Package size: &xinetd-size; 8 Estimated Disk space required: &xinetd-buildsize;</screen> 4 <para><application>xinetd</application> is the eXtended InterNET services Daemon, a secure 5 replacement for inetd.</para> 9 6 10 <para>xinetd is the eXtended InterNET services Daemon, a secure 11 replacement for inetd.</para> 7 <sect3><title>Package information</title> 8 <itemizedlist spacing='compact'> 9 <listitem><para>Download (HTTP): <ulink url="&xinetd-download-http;"/></para></listitem> 10 <listitem><para>Download (FTP): <ulink url="&xinetd-download-ftp;"/></para></listitem> 11 <listitem><para>Download size: &xinetd-size;</para></listitem> 12 <listitem><para>Estimated Disk space required: &xinetd-buildsize;</para></listitem> 13 <listitem><para>Estimated build time: &xinetd-time;</para></listitem></itemizedlist> 14 </sect3> 15 12 16 </sect2> -
server/other/xinetd/xinetd.ent
r2da087b r5bc2a01 6 6 <!ENTITY xinetd-desc SYSTEM "xinetd-desc.xml"> 7 7 <!ENTITY xinetd-config SYSTEM "xinetd-config.xml"> 8 <!ENTITY xinetd-buildsize " 1.2MB">9 <!ENTITY xinetd-version "2.3.1 0">8 <!ENTITY xinetd-buildsize "6.5 MB"> 9 <!ENTITY xinetd-version "2.3.12"> 10 10 <!ENTITY xinetd-download-http "http://www.xinetd.org/xinetd-&xinetd-version;.tar.gz"> 11 11 <!ENTITY xinetd-download-ftp ""> 12 <!ENTITY xinetd-size " 300KB">13 <!ENTITY xinetd-time "0.1 9SBU">12 <!ENTITY xinetd-size "285 KB"> 13 <!ENTITY xinetd-time "0.14 SBU">
Note:
See TracChangeset
for help on using the changeset viewer.