Learned about the Apache2 MaxClients directive which I set in my /etc/apache2/apache2.conf file. To figure out which MPM section to put the setting in I ran:
# apache2 -V | grep MPM
Learned about the Apache2 MaxClients directive which I set in my /etc/apache2/apache2.conf file. To figure out which MPM section to put the setting in I ran:
# apache2 -V | grep MPM
I learned about Apache2 mod_status today. This can be used to monitor the status of your Apache server!
Read an article ab – Apache HTTP server benchmarking tool for apache stress test about the ‘ab’ command which can be used to stress test a website.
I used it and figured out that my webserver could handle about 100 requests per second.
The command I used was:
# ab -c 100 -t 10 -r http://www.example.org/test.php
I’m working on an application that is going to need to scale, and I haven’t done this before. One of the things I wanted to know what how many requests per second I could expect a single load balancer to support. I found this article Benchmarking Load Balancers in the Cloud which says that on average you can get about 5000 requests/sec through a load balancer.
I was changing a HTML file index.html to be a PHP file called index.php and I renamed my index.html file index.html.bak. The plan was that Apache would find index.php rather than index.html and serve that as the default page. But when I went to load my page Firefox was asking me if I wanted to save the file with MIME type application/x-trash — not what I was expecting! It turns out the problem was related to the index.html.bak file, apparently Apache had decided that was the default page and then when it tried to get the MIME type for .bak it came up with application/x-trash. So the solution was to move the index.html.bak file to something with a filename that didn’t begin with ‘index.html’ (I used ‘original-index.html’) and then once that file had been renamed the index.php page was served properly.
I needed to modify some columns on a MySQL table today and found myself having to lookup the syntax and found this article which explains it.
Read an article about Database Sharding from CodeFutures.
Was doing some research into scaling web applications and came across this diagram of Wikimedia’s servers.
I had a problem with the REQUEST_URI server variable not being available in my PHP app when running under IIS on Windows. I followed these instructions to fix the problem: 100% Apache-Compliant REQUEST_URI for IIS and Windows.
I had to download and install ISAPI Rewrite 3 and Request_URI for IIS 1.1 which I installed into PHP by editing my php.ini file with this line:
auto_prepend_file = C:\Program Files\PHP\request_uri.inc
Setup TortoiseGit on my WinXP machine the other day following these instructions. I needed to install msysgit too.