Update README.md
This commit is contained in:
parent
b172b79ef2
commit
a6a2cb3b85
1 changed files with 24 additions and 0 deletions
24
README.md
24
README.md
|
@ -45,6 +45,30 @@ You can download the entire repository by using 'git clone' followed by the clon
|
|||
|
||||
Of course, you can add the execute bit (`chmod +x mysqltuner.pl`) so you can execute it without calling perl directly.
|
||||
|
||||
Specific usage
|
||||
--
|
||||
|
||||
* Minimal usage locally
|
||||
perl mysqltuner.pl
|
||||
|
||||
* Minimal usage remotely
|
||||
perl mysqltuner.pl --host targetDNS_IP --user admin_user --password admin_password
|
||||
|
||||
* Enable maximum output information around MySQL/MariaDb without debugging
|
||||
perl mysqltuner.pl --buffers --dbstat --idxstat
|
||||
|
||||
* Write your result in a file with information displayed
|
||||
perl mysqltuner.pl --outputfile /tmp/result_mysqltuner.txt
|
||||
|
||||
* Write your result in a file **without outputting information**
|
||||
perl mysqltuner.pl --silent --outputfile /tmp/result_mysqltuner.txt
|
||||
|
||||
* Using template model to customize your reporting file based on [Text::Template](https://metacpan.org/pod/Text::Template) syntax.
|
||||
perl mysqltuner.pl --silent --reportfile /tmp/result_mysqltuner.txt --template=/tmp/mymodel.tmpl
|
||||
|
||||
* Enable debugging information
|
||||
perl mysqltuner.pl --debug
|
||||
|
||||
FAQ
|
||||
--
|
||||
|
||||
|
|
Loading…
Reference in a new issue