Site Administration Page 4 - Setting Up Database Driven Websites |
Now we will install Apache. Assuming you downloaded it into /tmp, do the following (note you probably shouldn't be root while doing this):
This tells Apache to store it's configuration files in /etc/httpd. The data files directories (HTML documents, CGI-BIN directory) will be rooted in /home/httpd. Next, we tell Apache we want most of the modules enabled, and that they should be built as DSO modules. DSO stands for Dynamic Shared Object. By compiling Apache with DSO support, you are able to add and remove modules from Apache without having to recompile it. This is really handy, read all about it at the Apache DSO page (http://www.apache.org/docs/dso.html), if you're interested. Next thing to do is to compile this thing. Do this by running make:
That should take a little while. When it finishes, you'll have to su to root to copy the files to their final destinations:
If all goes well, you should see a bunch of messages tell you some information about Apache and how it was installed on your computer. Configuring ApacheStarting from Apache 1.3.4, the three configuration files: srm.conf, httpd.conf, and access.conf have been consolidated into httpd.conf. Naturally, this carries on to 1.3.6, so load it into your favorite editor and change these directives:
Scan through the files and change any other directives that you feel should be changed. For detailed information about the directives, visit the Apache Website and look at the server documentation. Testing ApacheRun this to start Apache:
If it said that Apache was started, you should be able to use any web browser to connect to your box. If all goes well, you will see a Welcome to Apache page. Also, check that the httpd processes are running:
or
depending on your flavour of Unix. You should see a bunch of processes like:
Now let's turn off Apache and install PHP.
As with MySQL, you probably want to add an entry in one of your system startup files to fire up Apache when your system boots up.
blog comments powered by Disqus |