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