Changeset ff3fa53
- Timestamp:
- 09/13/2003 12:39:14 AM (21 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 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, gimp3, 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_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- ab8de21f
- Parents:
- 7891efc
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
appendices/symlinks/rc0.xml
r7891efc rff3fa53 78 78 79 79 <row> 80 <entry>K28</entry> 81 <entry>apache</entry> 82 <entry><filename>../init.d/apache</filename></entry> 83 <entry>Shut down Apache Daemon: <xref linkend="apache"/></entry> 84 </row> 85 86 <row> 80 87 <entry>K30</entry> 81 88 <entry>sshd</entry> -
appendices/symlinks/rc1.xml
r7891efc rff3fa53 61 61 <entry><filename>../init.d/postgres</filename></entry> 62 62 <entry>Shut down PostgreSQL Daemon: <xref linkend="postgres"/></entry> 63 </row> 64 65 <row> 66 <entry>K28</entry> 67 <entry>apache</entry> 68 <entry><filename>../init.d/apache</filename></entry> 69 <entry>Shut down Apache Daemon: <xref linkend="apache"/></entry> 63 70 </row> 64 71 -
appendices/symlinks/rc2.xml
r7891efc rff3fa53 54 54 <entry><filename>../init.d/postgres</filename></entry> 55 55 <entry>Shut down PostgreSQL Daemon: <xref linkend="postgres"/></entry> 56 </row> 57 58 <row> 59 <entry>K28</entry> 60 <entry>apache</entry> 61 <entry><filename>../init.d/apache</filename></entry> 62 <entry>Shut down Apache Daemon: <xref linkend="apache"/></entry> 56 63 </row> 57 64 -
appendices/symlinks/rc3.xml
r7891efc rff3fa53 106 106 107 107 <row> 108 <entry>S32</entry> 109 <entry>apache</entry> 110 <entry><filename>../init.d/apache</filename></entry> 111 <entry>Start Apache Daemon: <xref linkend="apache"/></entry> 112 </row> 113 114 <row> 108 115 <entry>S34</entry> 109 116 <entry>mysql</entry> -
appendices/symlinks/rc4.xml
r7891efc rff3fa53 106 106 107 107 <row> 108 <entry>S32</entry> 109 <entry>apache</entry> 110 <entry><filename>../init.d/apache</filename></entry> 111 <entry>Start Apache Daemon: <xref linkend="apache"/></entry> 112 </row> 113 114 <row> 108 115 <entry>S34</entry> 109 116 <entry>mysql</entry> -
appendices/symlinks/rc5.xml
r7891efc rff3fa53 99 99 100 100 <row> 101 <entry>S32</entry> 102 <entry>apache</entry> 103 <entry><filename>../init.d/apache</filename></entry> 104 <entry>Start Apache Daemon: <xref linkend="apache"/></entry> 105 </row> 106 107 <row> 101 108 <entry>S34</entry> 102 109 <entry>mysql</entry> -
appendices/symlinks/rc6.xml
r7891efc rff3fa53 71 71 72 72 <row> 73 <entry>K28</entry> 74 <entry>apache</entry> 75 <entry><filename>../init.d/apache</filename></entry> 76 <entry>Shut down Apache Daemon: <xref linkend="apache"/></entry> 77 </row> 78 79 <row> 73 80 <entry>K30</entry> 74 81 <entry>sshd</entry> -
content/web/apache/apache-config.xml
r7891efc rff3fa53 1 <sect2> 2 <title>Configuring Apache</title> 3 4 <sect3> 5 <title>Config files</title> 6 7 <para><filename>/etc/apache/*</filename></para> 8 9 </sect3> 10 11 <sect3><title>Configuration Information</title> 12 13 <para>The main configuration file is called 14 <filename>httpd.conf</filename>. See 15 <ulink 16 url="http://httpd.apache.org/docs-2.0/configuring.html">http://httpd.apache.org/docs-2.0/configuring.html</ulink> for detailed 17 instructions on customizing your Apache <acronym>HTTP</acronym> 18 server.</para> 19 20 <para>To automate the running of Apache, use the following command to 21 create the init.d script:</para> 22 23 <screen><userinput><command>cat > /etc/rc.d/init.d/apache << "EOF" 24 #!/bin/bash 25 26 source /etc/sysconfig/rc 27 source $rc_functions 28 29 case "$1" in 30 start) 31 echo "Starting Apache daemon..." 32 /usr/sbin/apachectl -k start 33 evaluate_retval 34 ;; 35 36 stop) 37 echo "Stopping Apache daemon..." 38 /usr/sbin/apachectl -k stop 39 evaluate_retval 40 ;; 41 42 restart) 43 echo "Restarting Apache daemon..." 44 /usr/sbin/apachectl -k restart 45 evaluate_retval 46 ;; 47 48 status) 49 statusproc /usr/sbin/httpd 50 ;; 51 52 *) 53 echo "Usage: $0 {start|stop|restart|status}" 54 exit 1 55 ;; 56 esac 57 EOF 58 chmod 755 /etc/rc.d/init.d/apache</command></userinput></screen> 59 60 <para>Create the symbolic links to this file in the relevant 61 <filename class="directory">rc.d</filename> directory 62 with the following commands:</para> 63 64 <screen><userinput><command>cd /etc/rc.d/init.d && 65 ln -sf ../init.d/apache ../rc0.d/K28apache && 66 ln -sf ../init.d/apache ../rc1.d/K28apache && 67 ln -sf ../init.d/apache ../rc2.d/K28apache && 68 ln -sf ../init.d/apache ../rc3.d/S32apache && 69 ln -sf ../init.d/apache ../rc4.d/S32apache && 70 ln -sf ../init.d/apache ../rc5.d/S32apache && 71 ln -sf ../init.d/apache ../rc6.d/K28apache</command></userinput></screen> 72 73 </sect3> 74 75 </sect2> -
content/web/apache/apache-desc.xml
r7891efc rff3fa53 1 <sect2> 2 <title>Contents</title> 3 4 <para>The Apache package provides 5 <command>ab</command>, 6 <command>apachectl</command>, 7 <command>apr-config</command>, 8 <command>apu-config</command>, 9 <command>apxs</command>, 10 <command>checkgid</command>, 11 <command>dbmmanage</command>, 12 <command>htdbm</command>, 13 <command>htdigest</command>, 14 <command>htpasswd</command>, 15 <command>httpd</command>, 16 <command>logresolve</command>, 17 <command>rotatelogs</command>, 18 <filename class="libraryfile">libapr</filename>, 19 <filename class="libraryfile">libaprutil</filename> and 20 various modules.</para> 21 22 </sect2> 23 24 <sect2><title>Description</title> 25 26 <sect3><title>ab</title> 27 <para><command>ab</command> is a tool for benchmarking your Apache <acronym>HTTP</acronym> server. 28 </para></sect3> 29 30 <sect3><title>apachectl</title> 31 <para><command>apachectl</command> is a frontend to the Apache <acronym>HTTP</acronym> 32 server which is designed to help the administrator control the functioning of the Apache 33 httpd daemon.</para></sect3> 34 35 <sect3><title>apxs</title> 36 <para><command>apxs</command> 37 is a tool for building and installing extension modules for the Apache 38 <acronym>HTTP</acronym> server.</para></sect3> 39 40 <sect3><title>dbmmanage</title> 41 <para><command>dbmmanage</command> is used to create and update the 42 <acronym>DBM</acronym> format files used to store usernames and password 43 for basic authentication of <acronym>HTTP</acronym> 44 users.</para></sect3> 45 46 <sect3><title>htdigest</title> 47 <para><command>htdigest</command> is used to create and update the 48 flat-files used to store usernames, realm and password for digest 49 authentication of <acronym>HTTP</acronym> users.</para></sect3> 50 51 <sect3><title>htpasswd</title> 52 <para><command>htpasswd</command> is used to create and update the 53 flat-files used to store usernames and password for basic authentication of 54 <acronym>HTTP</acronym> users.</para></sect3> 55 56 <sect3><title>httpd</title> 57 <para><command>httpd</command> is the Apache <acronym>HTTP</acronym> 58 server program.</para></sect3> 59 60 <sect3><title>logresolve</title> 61 <para><command>logresolve</command> is a post-processing program to 62 resolve IP-addresses in Apache's access logfiles.</para></sect3> 63 64 <sect3><title>rotatelogs</title> 65 <para><command>rotatelogs</command> is a simple program for use in 66 conjunction with Apache's piped logfile feature.</para></sect3> 67 68 </sect2> -
content/web/apache/apache-exp.xml
r7891efc rff3fa53 1 <sect2> 2 <title>Command explanations</title> 3 4 <para><command>--enable-mods-shared=all</command> : We want modules 5 to be compiled and used as Dynamic Shared Objects 6 (<acronym>DSO</acronym>s) so they can be included and excluded from the 7 server using the run-time configuration directives. 8 </para> 9 10 </sect2> -
content/web/apache/apache-inst.xml
r7891efc rff3fa53 1 1 <sect2> 2 <title>Installation of Apache</title>2 <title>Installation of <application>Apache</application></title> 3 3 4 4 <para>For security reasons, running the server as an unpriviledged user and group is strongly encouraged.</para> 5 5 6 <screen><userinput> groupadd apache &&7 useradd -c apache -d /dev/null -g apache -s /bin/false apache</ userinput></screen>6 <screen><userinput><command>groupadd apache && 7 useradd -c apache -d /dev/null -g apache -s /bin/false apache</command></userinput></screen> 8 8 9 <para>Build and install Apacheby running the following commands:</para>9 <para>Build and install <application>Apache</application> by running the following commands:</para> 10 10 11 <screen><userinput>./configure --prefix=/usr \ 12 --sbindir=/usr/sbin \ 11 <screen><userinput><command>./configure --prefix=/usr \ 13 12 --libexecdir=/usr/lib/apache \ 13 --datadir=/var/www \ 14 14 --sysconfdir=/etc/apache \ 15 --localstatedir=/var/www \ 15 16 --includedir=/usr/include/apache \ 16 --datadir=/var/www \ 17 --localstatedir=/var/www \ 18 --logfiledir=/var/log/apache \ 19 --runtimedir=/var/run \ 20 --enable-module=all \ 21 --enable-shared=max \ 22 --disable-module=auth_db \ 23 --disable-module=auth_dbm \ 24 --server-uid=apache \ 25 --server-gid=apache && 17 --enable-mods-shared=all && 26 18 make && 27 make install</ userinput></screen>19 make install</command></userinput></screen> 28 20 29 21 </sect2> -
content/web/apache/apache-intro.xml
r7891efc rff3fa53 1 1 <sect2> 2 <title>Introduction to Apache</title>2 <title>Introduction to <application>Apache</application></title> 3 3 4 <screen>Download location (HTTP): <ulink url="&apache-download-http;" /> 5 Download location (FTP): <ulink url="&apache-download-ftp;" /> 6 Version used: &apache-version; 7 Package size: &apache-size; 8 Estimated disk space required: &apache-buildsize;</screen> 9 10 <para>The Apache package contains an open-source HTTP server. It is 4 <para>The <application>Apache</application> package contains an 5 open-source <acronym>HTTP</acronym> server. It is 11 6 useful for creating local intranet web sites or running huge web serving 12 7 operations.</para> 13 8 9 <sect3><title>Package information</title> 10 <itemizedlist spacing='compact'> 11 <listitem><para>Download (HTTP): <ulink url="&apache-download-http;"/></para></listitem> 12 <listitem><para>Download (FTP): <ulink url="&apache-download-ftp;"/></para></listitem> 13 <listitem><para>Download size: &apache-size;</para></listitem> 14 <listitem><para>Estimated Disk space required: &apache-buildsize;</para></listitem> 15 <listitem><para>Estimated build time: &apache-time;</para></listitem></itemizedlist> 16 </sect3> 17 18 <sect3><title><application>Apache</application> dependencies</title> 19 <sect4><title>Optional</title> 20 <para><xref linkend="db"/>, <xref linkend="openssl"/>, <xref 21 linkend="openldap"/> and <xref linkend="lynx"/> 22 </para></sect4> 23 </sect3> 24 14 25 </sect2> -
content/web/apache/apache.ent
r7891efc rff3fa53 5 5 <!ENTITY apache-config SYSTEM "apache-config.xml"> 6 6 <!ENTITY apache-desc SYSTEM "apache-desc.xml"> 7 <!ENTITY apache-version "1.3.27"> 8 <!ENTITY apache-download-http "http://www.apache.org/dist/httpd/apache_1.3.27.tar.gz"> 9 <!ENTITY apache-download-ftp "ftp://ftp.tux.org/pub/net/apache/dist/httpd/apache_1.3.27.tar.gz"> 10 <!ENTITY apache-size "2.2 MB"> 11 <!ENTITY apache-buildsize "13 MB"> 7 <!ENTITY apache-version "2.0.47"> 8 <!ENTITY apache-download-http "http://www.apache.org/dist/httpd/httpd-&apache-version;.tar.gz"> 9 <!ENTITY apache-download-ftp "ftp://ftp.tux.org/pub/net/apache/dist/httpd/httpd-&apache-version;.tar.gz"> 10 <!ENTITY apache-size "5.9 MB"> 11 <!ENTITY apache-buildsize "95 MB"> 12 <!ENTITY apache-time "1.31 SBU"> -
index.xml
r7891efc rff3fa53 3 3 "/usr/share/docbook/docbookx.dtd" [ 4 4 5 <!ENTITY version "2003091 2">6 <!ENTITY releasedate "September 1 2th, 2003">5 <!ENTITY version "20030913"> 6 <!ENTITY releasedate "September 13th, 2003"> 7 7 8 8 <!ENTITY % book SYSTEM "book/book.ent"> -
introduction/welcome/changelog.xml
r7891efc rff3fa53 10 10 11 11 <itemizedlist> 12 13 <listitem><para>September 13th, 2003 [igor]: update to 14 Apache-2.0.47.</para></listitem> 12 15 13 16 <listitem><para>September 11th, 2003 [larry]: Arranged Part
Note:
See TracChangeset
for help on using the changeset viewer.