Apache 101 - Performance settings
(Page 5 of 6 )
There are multiple performance settings that you can activate and manipulate in Apache. Each of these settings is designed to prevent slow user connections from hogging up all of the servers resources, stealing bandwidth, etc. They can also be used to prevent things like Web spiders from hogging up the resources.
I won't go into too much detail about manipulating Apache in terms of performance because this article is only a basic guide to Apache as a web server, so visit some of the links shown below if you're interested in performance tuning your Apache web server:
- Apache.org performance tuning tips
- Wired Apache performance tips
- PHPEveryone's list of Apache tips (excellent list)
Starting Apache Let's take your new Apache installation out for a spin. If you installed Apache using a binary distribution or completly from scratch as root, then type
/usr/local/apache/bin/apachectl startIf you installed a RedHat RPM as root, simply type
httpdPoint your browser at your Apache web server using either http://localhost or http://127.0.0.1 (the internal loopback IP address) if you installed Apache on the local machine (i.e. the same machine you’re using to test it). If Apache is installed on another machine, then substituting your server's host name/IP address for localhost should do just fine and Apaches default home page should appear.
Next: Conclusion >>
More Apache Articles
More By Nakul Goyal