5.12. References
"Stopping and Restarting Apache,"
from the Apache documentation:
https://httpd.apache.org/docs/stopping.html .
RPM resources:
CVS (Concurrent Versions System)
resources:
daemontools, a
collection of tools for managing Unix services: https://cr.yp.to/daemontools.html .
Log collecting and processing tools: https://www.apache-tools.com/search.jsp?keys=log .
cronolog , a log file-rotation
program for the Apache web server: https://www.cronolog.org/ .
mod_log_spread,
which provides reliable distributed logging for Apache https://www.backhand.org/mod_log_spread/ .
Spread, a wide area group
communication system: https://www.spread.org/ .
Recall, an
open source library for writing distributed, fault-tolerant,
replicated storage servers. A Recall-based server will allow you to
save and access data even in the presence of machine failures. See
https://www.fault-tolerant.org/recall/ .
Chapters 2, 4, 9, 11, and 28 in UNIX System Administration
Handbook , by Evi Nemeth, Garth Snyder, Scott Seebass, and
Trent H. Hein (Prentice Hall).
Chapters 4 and 5 in Optimizing UNIX for
Performance , by Amir H. Majidimehr (Prentice Hall).
To learn more about memory management, refer to a book
that deals with operating system theory, and especially with the
operating systems used on web server machines.
A good starting point is one of the classic textbooks used in
operating system courses. For example:
Operating System Concepts , by Abraham
Silberschatz and Peter Baer Galvin (John Wiley & Sons, Inc.).
Applied Operating System Concepts , by Abraham
Silberschatz, Peter Baer Galvin, and Greg Gagne (John Wiley &
Sons, Inc.).
Design of the Unix Operating System , by Maurice
Bach (Prentice Hall).
The Memory Management Reference at https://www.xanalys.com/software_tools/mm/ is
also very helpful.
mod_throttle_access:
https://www.fremen.org/apache/mod_throttle_access.html .
mod_backhand,
which provides load balancing for Apache: https://www.backhand.org/mod_backhand/ .
The High-Availability Linux
Project, the definitive guide to load-balancing techniques:
https://www.linux-ha.org/ .
The Heartbeat project is a part of the HA Linux project.
lbnamed , a load-balancing name server written in
Perl: https://www.stanford.edu/~riepel/lbnamed/ or
https://www.stanford.edu/~schemers/docs/lbnamed/lbnamed.html .
"Network Address Translation and Networks: Virtual
Servers (Load Balancing)": https://www.suse.de/~mha/linux-ip-nat/diplom/node4.html#SECTION00043100000000000000 .
Linux Virtual
Server Project: https://www.linuxvirtualserver.org/ .
Linux and port forwarding:
https://www.netfilter.org/ipchains/ or
https://www.netfilter.org/ .
"Efficient Support for P-HTTP in Cluster-Based Web
Servers," by Mohit Aron and Willy Zwaenepoel, in
Proceedings of the USENIX 1999 Annual Technical Conference, Monterey,
CA, June 1999: https://www.cs.rice.edu/~druschel/usenix99lard.ps.gz
or https://www.usenix.org/publications/library/proceedings/usenix99/full_papers/aron/aron_html/ .
IP
filter: https://coombs.anu.edu.au/~avalon/ . The latest
IP filter includes some simple load-balancing code that allows a
round-robin distribution onto several machines via
ipnat .
Perl modules available from https://www.modperl.com/book/source (not on
CPAN):
Apache::BlockAgent , which allows you to block
impolite web agents.
Apache::SpeedLimit , which allows you to limit
indexing robots' speed.
5.11. Server Maintenance Chores 6. Coding with mod_perl in Mind
Copyright © 2003 O'Reilly & Associates. All rights reserved.