I’m just getting started with a new site for MySQLTuner. In the meantime, check out the links at the top right to download the script or to learn more about the project.
New home for MySQLTuner
This entry was posted on 12/08/2009 (Wednesday) at 08:10 and is filed under Announcements. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.
Printed from: http://blog.mysqltuner.com/2009/08/new-home-for-mysqltuner/ .
© Major Hayden 2010.
© Major Hayden 2010.

Hi,
Great tool! AIX 5L support added, here the diff output.
234a235,242
>
> } elsif ($os =~ /AIX/) {
> $physical_memory = `lsattr -El sys0 | grep realmem | awk ‘{print \$2}’` or memerror; #lsattr output in KB
> chomp($physical_memory);
> $physical_memory = $physical_memory*1024;
> $swap_memory = `lsps -as | awk -F”(MB| +)” ‘/MB /{print \$2}’` or memerror; #lsps -a out always in MB
> chomp($swap_memory);
> $swap_memory = $swap_memory*1024*1024;
235a244
>
402a412,416
>
> } elsif (`uname` =~ /AIX/ && `bootinfo -K` =~ /64/) {
> $arch = 64;
> goodprint “Operating on 64-bit architecture\n”;
>
Feel free to unlink this comment. Have fun!
Thanks for the details, Baptiste! I’ll merge in these changes soon and put out a testing release that you can pull from github.