Skip to content

Commit

Permalink
use the option --defaults-file ...
Browse files Browse the repository at this point in the history
  • Loading branch information
koebi001 committed Apr 21, 2011
1 parent 18bab70 commit 2e34761
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mysqltuner.pl
Expand Up @@ -294,8 +294,8 @@ sub mysql_setup {
}
} elsif ( -r "/etc/mysql/debian.cnf" and $doremote == 0 ){
# It's a debian system, use the maintenance account
$mysqllogin = "-u `awk '\$1 ~ /user/ {print \$3}' /etc/mysql/debian.cnf | head -n 1` -p`awk '\$1 ~ /password/ {print \$3}' /etc/mysql/debian.cnf | head -n 1`";
my $loginstatus = `mysqladmin ping $mysqllogin 2>&1`;
$mysqllogin = "--defaults-file=/etc/mysql/debian.cnf";
my $loginstatus = `mysqladmin $mysqllogin ping 2>&1`;
unless ($loginstatus =~ /mysqld is alive/) {
badprint "Attempted to use login credentials from debian maintenance account, but they failed.\n";
exit 0;
Expand Down

0 comments on commit 2e34761

Please sign in to comment.