@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!
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’”;
Congratulations!!! MySQLTuner is a great tool
Could it be integrated into phpMyAdmin “server status” page ?
@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!
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’”;
Congratulations Major, I was always a fan of your tool.