You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some MySQL installations do not have socket files available for those --protocol=TCP is required. There seems to be no way to coax mysqltuner.pl into connecting in that case.
Workaround: With suitable permissions adding a socket file and then specifying --socket=/path/to/sock seems to work nicely.
The text was updated successfully, but these errors were encountered:
temporarily, you can edit mysqltuner.pl and replace this line (+/- l756) : $remotestring = " -h $opt{host} -P $opt{port} ";
with $remotestring = " -h $opt{host} -P $opt{port} --protocol=tcp";
Some MySQL installations do not have socket files available for those --protocol=TCP is required. There seems to be no way to coax mysqltuner.pl into connecting in that case.
Workaround: With suitable permissions adding a socket file and then specifying --socket=/path/to/sock seems to work nicely.
The text was updated successfully, but these errors were encountered: