MySQLTuner is the Debian Package of the Day!

I just received a Google Alert about MySQLTuner being the Debian Package of the Day!

5 Responses

  1. Congratulations!!! MySQLTuner is a great tool :-)

  2. Julien Tartarin

    Could it be integrated into phpMyAdmin “server status” page ?

  3. @santisaez Thank you for the compliment! Let me know if you have any ideas for improvements.

    @Julien That could be possible, but I’d have to talk to the PHPMyAdmin developers. Or, I might be able to fashion a patch that you could run. I’ll look into it!

  4. made a slight change to this script as my host does not allow local connections, and now you can check remote servers.


    } else {
    print "Please enter your MySQL login: ";
    my $name = ;

    print “Please enter your MySQL hostname: “;
    my $hname = ;

    print “Please enter your MySQL password: “;
    system(”stty -echo”); #don’t show the password
    my $password = ;
    system(”stty echo”); #plz give echo back
    chomp($password);
    chomp($name);
    chomp($hname);
    $mysqllogin = “-h $hname -u $name -p’$password’”;

  5. Congratulations Major, I was always a fan of your tool.

Leave a Reply