edited Part VII

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@1239 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Larry Lawrence 2003-09-29 14:19:14 +00:00
parent 317034ae40
commit 31ff91e4df
6 changed files with 31 additions and 19 deletions

View File

@ -2,6 +2,12 @@
<?dbhtml filename="databases.html" dir="content"?>
<title>Databases</title>
<para>This chapter includes databases that range from single-user
read/write to industrial database servers with transaction support.
Generally, you will be sent here to satisfy dependencies to other
applications although building a <acronym>SQL</acronym> server on a base
<acronym>LFS</acronym> system is entirely possible.</para>
&db;
&db-3.3;
&mysql;

View File

@ -1,5 +1,5 @@
<sect2>
<title>Configuring Apache</title>
<title>Configuring <application>Apache</application></title>
<sect3>
<title>Config files</title>
@ -19,7 +19,7 @@ server.</para>
<para>To automate the running of Apache, use the following command to
create the init.d script:</para>
<screen><userinput><command>cat &gt; /etc/rc.d/init.d/apache &lt;&lt; "EOF"
<screen><userinput><command>cat &gt; /etc/rc.d/init.d/apache &lt;&lt; "EOF"</command>
#!/bin/bash
source /etc/sysconfig/rc
@ -53,7 +53,7 @@ case "$1" in
exit 1
;;
esac
EOF
<command>EOF
chmod 755 /etc/rc.d/init.d/apache</command></userinput></screen>
<para>Create the symbolic links to this file in the relevant

View File

@ -1,7 +1,7 @@
<sect2>
<title>Contents</title>
<para>The Apache package provides
<para>The <application>Apache</application> package provides
<command>ab</command>,
<command>apachectl</command>,
<command>apr-config</command>,
@ -19,24 +19,25 @@
<filename class="libraryfile">libapr</filename>,
<filename class="libraryfile">libaprutil</filename> and
various modules.</para>
</sect2>
<sect2><title>Description</title>
<sect3><title>ab</title>
<para><command>ab</command> is a tool for benchmarking your Apache <acronym>HTTP</acronym> server.
<para><command>ab</command> is a tool for benchmarking your
<application>Apache</application> <acronym>HTTP</acronym> server.
</para></sect3>
<sect3><title>apachectl</title>
<para><command>apachectl</command> is a frontend to the Apache <acronym>HTTP</acronym>
server which is designed to help the administrator control the functioning of the Apache
httpd daemon.</para></sect3>
<para><command>apachectl</command> is a frontend to the
<application>Apache</application> <acronym>HTTP</acronym>
server which is designed to help the administrator control the
functioning of the <application>Apache</application> httpd daemon.</para></sect3>
<sect3><title>apxs</title>
<para><command>apxs</command>
is a tool for building and installing extension modules for the Apache
<acronym>HTTP</acronym> server.</para></sect3>
is a tool for building and installing extension modules for the
<application>Apache</application> <acronym>HTTP</acronym> server.</para></sect3>
<sect3><title>dbmmanage</title>
<para><command>dbmmanage</command> is used to create and update the
@ -55,19 +56,19 @@ flat-files used to store usernames and password for basic authentication of
<acronym>HTTP</acronym> users.</para></sect3>
<sect3><title>httpd</title>
<para><command>httpd</command> is the Apache <acronym>HTTP</acronym>
<para><command>httpd</command> is the <application>Apache</application> <acronym>HTTP</acronym>
server program.</para></sect3>
<sect3><title>instdso.sh</title>
<para><command>instdso.sh</command> is a script which installs Apache
<acronym>DSO</acronym> modules.</para></sect3>
<para><command>instdso.sh</command> is a script which installs
<application>Apache</application> <acronym>DSO</acronym> modules.</para></sect3>
<sect3><title>logresolve</title>
<para><command>logresolve</command> is a post-processing program to
resolve IP-addresses in Apache's access logfiles.</para></sect3>
resolve <acronym>IP</acronym>-addresses in <application>Apache</application>'s access logfiles.</para></sect3>
<sect3><title>rotatelogs</title>
<para><command>rotatelogs</command> is a simple program for use in
conjunction with Apache's piped logfile feature.</para></sect3>
conjunction with <application>Apache</application>'s piped logfile feature.</para></sect3>
</sect2>

View File

@ -12,8 +12,7 @@ and, among them, the build directory at
will allow the modules added to <application>Apache</application> to
be configured without errors. Apply the patch:</para>
<screen><userinput><command>patch -Np1 -i ../httpd-&apache-version;-config.patch</command>
</userinput></screen>
<screen><userinput><command>patch -Np1 -i ../httpd-&apache-version;-config.patch</command></userinput></screen>
<para>Build and install <application>Apache</application> by running the following commands:</para>

View File

@ -8,7 +8,8 @@
<sect3><title>Configuration Information</title>
<para>To enable <acronym>PHP</acronym> support in the Apache web server,
<para>To enable <acronym>PHP</acronym> support in the
<application>Apache</application> web server,
a new AddType directive must be added to the
<filename>httpd.conf</filename> file:</para>

View File

@ -2,6 +2,11 @@
<?dbhtml filename="web.html" dir="content"?>
<title>Web serving</title>
<para>This chapter includes applications that respond to requests
originating from the Internet. Specifically covered are
<acronym>HTTP</acronym> requests and <acronym>FTP</acronym>
requests.</para>
&apache;
&php;
&proftpd;