From 2e649a782f879173e126bbcd9d25660d2ac25b53 Mon Sep 17 00:00:00 2001 From: Jean-Marie Renouard Date: Thu, 27 Aug 2015 12:13:48 +0200 Subject: [PATCH] Update index.html --- index.html | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/index.html b/index.html index 4768113..0ead0f3 100644 --- a/index.html +++ b/index.html @@ -74,6 +74,44 @@ perl mysqltuner.pl

Of course, you can add the execute bit (chmod +x mysqltuner.pl) so you can execute it without calling perl directly.

+ +

Specific usage

+ +

Usage: Minimal usage locally

+ +
perl mysqltuner.pl 
+
+ +

Usage: Minimal usage remotely

+ +
perl mysqltuner.pl --host targetDNS_IP --user admin_user --password admin_password
+
+ +

Usage: Enable maximum output information around MySQL/MariaDb without debugging

+ +
perl mysqltuner.pl --buffers --dbstat --idxstat
+
+ +

Usage: Write your result in a file with information displayed

+ +
perl mysqltuner.pl --outputfile /tmp/result_mysqltuner.txt
+
+ +

Usage: Write your result in a file without outputting information

+ +
perl mysqltuner.pl --silent --outputfile /tmp/result_mysqltuner.txt
+
+ +

Usage: Using template model to customize your reporting file based on Text::Template syntax.

+ +
perl mysqltuner.pl --silent --reportfile /tmp/result_mysqltuner.txt --template=/tmp/mymodel.tmpl
+
+ +

Usage: Enable debugging information

+ +
perl mysqltuner.pl --debug
+
+

FAQ