source: server/other/xinetd/xinetd-config.xml@ e80cc95

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 v1_0 v5_0 v5_0-pre1 v5_1 v5_1-pre1 xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since e80cc95 was e80cc95, checked in by Larry Lawrence <larry@…>, 21 years ago

config files edit

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

  • Property mode set to 100644
File size: 2.5 KB
Line 
1<sect2>
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.bak
6sed -e 's/etc/sbin/g' xinetd/sample.conf &gt; /etc/xinetd.conf</userinput></screen></para>
7
8<sect3><title>Config files</title>
9<para><filename>/etc/xinetd.conf</filename></para>
10
11<para>Create the xinetd boot script:</para>
12<para><screen><userinput>cat &gt; /etc/rc.d/init.d/xinetd &lt;&lt; "EOF"</userinput>
13#!/bin/bash
14# Begin $rc_base/init.d/xinetd
15# Based on sysklogd script from LFS-3.1 and earlier.
16# Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org
17source /etc/sysconfig/rc
18source $rc_functions
19case "$1" in
20 start)
21 echo "Starting xinetd..."
22 loadproc /usr/sbin/xinetd
23 ;;
24 stop)
25 echo "Stopping xinetd..."
26 killproc /usr/sbin/xinetd
27 ;;
28 reload)
29 echo "Reloading xinetd..."
30 killall -HUP xinetd
31 ;;
32 restart)
33 $0 stop
34 sleep 1
35 $0 start
36 ;;
37 status)
38 statusproc /usr/sbin/xinetd
39 ;;
40 *)
41 echo "Usage: $0 {start|stop|reload|restart|status}"
42 exit 1
43 ;;
44esac
45# End $rc_base/init.d/xinetd
46<userinput>EOF</userinput></screen></para>
47
48<para>Add the run level symlinks:</para>
49
50<para><screen><userinput>chmod 754 /etc/rc.d/init.d/xinetd &amp;&amp;
51ln -s /etc/rc.d/init.d/xinetd /etc/rc.d/rc0.d/K49xinetd &amp;&amp;
52ln -s /etc/rc.d/init.d/xinetd /etc/rc.d/rc1.d/K49xinetd &amp;&amp;
53ln -s /etc/rc.d/init.d/xinetd /etc/rc.d/rc2.d/K49xinetd &amp;&amp;
54ln -s /etc/rc.d/init.d/xinetd /etc/rc.d/rc3.d/S23xinetd &amp;&amp;
55ln -s /etc/rc.d/init.d/xinetd /etc/rc.d/rc4.d/S23xinetd &amp;&amp;
56ln -s /etc/rc.d/init.d/xinetd /etc/rc.d/rc5.d/S23xinetd &amp;&amp;
57ln -s /etc/rc.d/init.d/xinetd /etc/rc.d/rc6.d/K49xinetd
58</userinput></screen></para>
59
60<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>
62
63<para>Checking the <filename>/var/log/daemon.log</filename> file
64should prove quite entertaining. This file may contain entries
65similar to the following: </para>
66
67<para><screen><userinput>Aug 22 21:40:21 dps10 xinetd[2696]: Server /usr/sbin/in.rlogind is not
68executable [line=29]
69Aug 22 21:40:21 dps10 xinetd[2696]: Error parsing attribute server -
70DISABLING SERVICE [line=29]
71Aug 22 21:40:21 dps10 xinetd[2696]: Server /usr/sbin/in.rshd is not
72executable [line=42]</userinput></screen></para>
73
74<para>These errors are due to the fact that we don't have most of the
75servers that xinetd is trying to control installed yet.</para></sect3>
76</sect2>
77
Note: See TracBrowser for help on using the repository browser.