1. Enable extended server status in httpd.conf file. You can find instructions in the Apache manual http://httpd.apache.org/docs/2.0/mod/mod_status.html 2. Generate Apache activity: apache/bin/ab -n 200 -c 1 http://localhost:8080/ apache/bin/ab -n 200000 -c 1000 http://localhost:8080/ 3. View the server status at: http://localhost:8080/server-status 4. Monitor log files at apache/logs/ tail -f apache/logs/access_log 5. Generate error logs: apache/bin/ab -n 200 -c 1 http://localhost:8080/`date +%s` for ((i=1;i<5;i+=1)); do apache/bin/ab -n 2 -c 1 http://localhost:8080/`date +%s`; sleep 2; done;
Monitor log files at apache/logs/
cat /home/knoppix/apache/logs/access_log