Before the installation can take place Apache must be made aware of its environment. This is done through the configure script: Before the installation can take place Apache must be made aware of its environment. This is done through the script: $ ./configure The configure script explores your operating system and creates the Makefile for it, so you can execute the following to start the actual compilation process, copy the files into the directory set by the --prefix option, and execute the apachectl script to start the Apache server: $ make Though this will install and start Apache, you also need to configure your operating system to start Apache when it boots. The procedure differs from system to system on Unix platforms but is usually done by creating a symbolic link to the apachectl script for the relevant runlevel (servers typically use run level 3): # cd /etc/rc3.d On Windows, Apache is configured to start automatically when you install from a binary distribution, but you can do it from a command line by calling Apache with the -k install command switch. Testing the installation To verify the startup has succeeded, try to access the web server using a browser as a client. If it works you will see the famous “Seeing this instead of the website you expected?” page, as shown in Figure 2-1. At the time of this writing, there are talks on the Apache developers’ list to reduce the welcome message to avoid confusing users (not administrators but those who stumble on active but unused Apache installations that are publicly available on the Internet).
As a bonus, toward the end of the page, you will find a link to the Apache reference manual. If you are near a computer while reading this book, you can use this copy of the manual to learn configuration directive specifics. Using the ps tool, you can find out how many Apache processes there are: $ ps -Ao user,pid,ppid,cmd | grep httpd Using tail, you can see what gets logged when different requests are processed. Enter a nonexistent filename in the browser location bar and send the request to the web server; then examine the access log (logs are in the /var/www/logs folder). The example below shows successful retrieval (as indicated by the 200 return status code) of a file that exists, followed by an unsuccessful attempt (404 return status code) to retrieve a file that does not exist: 192.168.2.3 - - [21/Jul/2004:17:12:22 +0100] "GET /manual/images/feather.gif Here is what the error log contains for this example: [Wed Jul 21 17:17:04 2004] [notice] Apache/2.0.50 (Unix) configured The idea is to become familiar with how Apache works. As you learn what constitutes normal behavior, you will learn how to spot unusual events.
blog comments powered by Disqus |
|
|
|
|
|
|
|