ident fix

This commit is contained in:
Jean-Marie RENOUARD 2016-04-11 12:25:42 +02:00
commit 709da2cc95
5 changed files with 1050 additions and 483 deletions

View file

@ -14,14 +14,14 @@ perl:
matrix: matrix:
include: include:
- addons: - addons:
mariadb: 5.5 mariadb: "5.5"
perl: 5.20 perl: "5.20"
- addons: - addons:
mariadb: 10.0 mariadb: "10.0"
perl: 5.20 perl: "5.20"
- addons: # - addons:
mariadb: 10.1 # mariadb: "10.1"
perl: 5.20 # perl: "5.20"
before_install: before_install:
- git clone git://github.com/haarg/perl-travis-helper - git clone git://github.com/haarg/perl-travis-helper
@ -35,4 +35,6 @@ install:
- cpanm --quiet --notest JSON - cpanm --quiet --notest JSON
script: script:
- ./mysqltuner.pl -idxstat --dbstat - echo -e "[client]\nuser=root\npassword=\"\"" > .my.cnf
- chmod 600 .my.cnf
- ./mysqltuner.pl --idxstat --dbstat

View file

@ -70,6 +70,12 @@
* Check 80, 8080, 443 and 8443 ports if warning are raised if there are opened * Check 80, 8080, 443 and 8443 ports if warning are raised if there are opened
* Check if some banned ports are not opened (option --bannedports separated by comma) * Check if some banned ports are not opened (option --bannedports separated by comma)
* Check if non kernel and user process except mysqld are not using more than 15% of total physical memory) * Check if non kernel and user process except mysqld are not using more than 15% of total physical memory)
* Check vm.swapiness
* Check /etc/security/limit.conf
* Check sysctl entries: sunrpc.tcp_slot_entries, vm.swappiness, fs.aio-fs-nr
* Check mount point
* Check Ethernet card
* Check load average
## MySQLTuner Server version checks ## MySQLTuner Server version checks
* EOL MySQL version check * EOL MySQL version check

View file

@ -62,7 +62,7 @@ __Usage:__ Minimal usage locally
__Usage:__ Minimal usage remotely __Usage:__ Minimal usage remotely
perl mysqltuner.pl --host targetDNS_IP --user admin_user --password admin_password perl mysqltuner.pl --host targetDNS_IP --user admin_user --pass admin_password
__Usage:__ Enable maximum output information around MySQL/MariaDb without debugging __Usage:__ Enable maximum output information around MySQL/MariaDb without debugging

View file

@ -1,6 +1,6 @@
# NAME # NAME
MySQLTuner 1.6.4 - MySQL High Performance Tuning Script MySQLTuner 1.6.8 - MySQL High Performance Tuning Script
# IMPORTANT USAGE GUIDELINES # IMPORTANT USAGE GUIDELINES
@ -21,32 +21,35 @@ You must provide the remote server's total memory when connecting to other serve
# PERFORMANCE AND REPORTING OPTIONS # PERFORMANCE AND REPORTING OPTIONS
--skipsize Don't enumerate tables and their types/sizes (default: on) --skipsize Don't enumerate tables and their types/sizes (default: on)
(Recommended for servers with many tables) (Recommended for servers with many tables)
--skippassword Don't perform checks on user passwords(default: off) --skippassword Don't perform checks on user passwords(default: off)
--checkversion Check for updates to MySQLTuner (default: don't check) --checkversion Check for updates to MySQLTuner (default: don't check)
--forcemem <size> Amount of RAM installed in megabytes --updateversion Check for updates to MySQLTuner and update when newer version is available (default: don't check)
--forceswap <size> Amount of swap memory configured in megabytes --forcemem <size> Amount of RAM installed in megabytes
--passwordfile <path>Path to a password file list(one password by line) --forceswap <size> Amount of swap memory configured in megabytes
--passwordfile <path> Path to a password file list(one password by line)
# OUTPUT OPTIONS # OUTPUT OPTIONS
--silent Don't output anything on screen --silent Don't output anything on screen
--nogood Remove OK responses --nogood Remove OK responses
--nobad Remove negative/suggestion responses --nobad Remove negative/suggestion responses
--noinfo Remove informational responses --noinfo Remove informational responses
--debug Print debug information --debug Print debug information
--dbstat Print database information --dbstat Print database information
--idxstat Print index information --idxstat Print index information
--cvefile CVE File for vulnerability checks --bannedports Ports banned separated by comma(,)
--nocolor Don't print output in color --maxportallowed Number of ports opened allowed on this hosts
--json Print result as JSON string --cvefile CVE File for vulnerability checks
--buffers Print global and per-thread buffer values --nocolor Don't print output in color
--outputfile <path> Path to a output txt file --json Print result as JSON string
--reportfile <path> Path to a report txt file --buffers Print global and per-thread buffer values
--template <path> Path to a template file --outputfile <path> Path to a output txt file
--reportfile <path> Path to a report txt file
# PERLDOC --template <path> Path to a template file
--verbose Prints out all options (default: no verbose)
=head1 PERLDOC
You can find documentation for this module with the perldoc command. You can find documentation for this module with the perldoc command.

File diff suppressed because it is too large Load diff