Ignore:
Timestamp:
03/28/2004 07:14:54 AM (20 years ago)
Author:
Tushar Teredesai <tushar@…>
Branches:
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, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
babc75b
Parents:
ae9c528
Message:

Completed lfs-bootscripts changes

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • content/web/apache/apache-config.xml

    rae9c528 rfe88f584  
    2222server.</para>
    2323
    24 <para>To automate the running of Apache, use the following command to
    25 create the init.d script:</para>
    26 
    27 <screen><userinput><command>cat &gt; /etc/rc.d/init.d/apache &lt;&lt; "EOF"</command>
    28 #!/bin/sh
    29 
    30 . /etc/sysconfig/rc
    31 . $rc_functions
    32 
    33 case "$1" in
    34         start)
    35                 echo "Starting Apache daemon..."
    36                 /usr/sbin/apachectl -k start
    37                 evaluate_retval
    38                 ;;
    39 
    40         stop)
    41                 echo "Stopping Apache daemon..."
    42                 /usr/sbin/apachectl -k stop
    43                 evaluate_retval
    44                 ;;
    45 
    46         restart)
    47                 echo "Restarting Apache daemon..."
    48                 /usr/sbin/apachectl -k restart
    49                 evaluate_retval
    50                 ;;
    51 
    52         status)
    53                 statusproc /usr/sbin/httpd
    54                 ;;
    55                
    56         *)
    57                 echo "Usage: $0 {start|stop|restart|status}"
    58                 exit 1
    59                 ;;
    60 esac
    61 <command>EOF
    62 chmod 755 /etc/rc.d/init.d/apache</command></userinput></screen>
    63 
    64 <para>Create the symbolic links to this file in the relevant
    65 <filename class="directory">rc.d</filename> directory
    66 with the following commands:</para>
    67 
    68 <screen><userinput><command>cd /etc/rc.d/init.d &amp;&amp;
    69 ln -sf ../init.d/apache ../rc0.d/K28apache &amp;&amp;
    70 ln -sf ../init.d/apache ../rc1.d/K28apache &amp;&amp;
    71 ln -sf ../init.d/apache ../rc2.d/K28apache &amp;&amp;
    72 ln -sf ../init.d/apache ../rc3.d/S32apache &amp;&amp;
    73 ln -sf ../init.d/apache ../rc4.d/S32apache &amp;&amp;
    74 ln -sf ../init.d/apache ../rc5.d/S32apache &amp;&amp;
    75 ln -sf ../init.d/apache ../rc6.d/K28apache</command></userinput></screen>
     24<para>Install <filename>/etc/rc.d/init.d/apache</filename>
     25init script included in the <xref linkend="intro-important-bootscripts"/> package.</para>
     26                                                                                                               
     27<screen><userinput><command>make install-apache</command></userinput></screen>
    7628
    7729</sect3>
Note: See TracChangeset for help on using the changeset viewer.