Update mysqltuner.pl

Syntax
This commit is contained in:
Long Radix 2023-03-28 19:44:04 +02:00 committed by GitHub
parent 16237f7778
commit 1ccba5e556
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1915,7 +1915,7 @@ sub system_recommendations {
. $opt{'maxportallowed'} . $opt{'maxportallowed'}
. "allowed."; . "allowed.";
push( @generalrec, push( @generalrec,
"Consider dedicating a server for your database installation with less services running on !" "Consider dedicating a server for your database installation with fewer services running on it!"
); );
} }
else { else {
@ -1929,7 +1929,7 @@ sub system_recommendations {
if ( is_open_port($banport) ) { if ( is_open_port($banport) ) {
badprint "Banned port: $banport is opened.."; badprint "Banned port: $banport is opened..";
push( @generalrec, push( @generalrec,
"Port $banport is opened. Consider stopping program handling this port." "Port $banport is opened. Consider stopping program handling over this port."
); );
} }
else { else {
@ -1947,7 +1947,7 @@ sub security_recommendations {
subheaderprint "Security Recommendations"; subheaderprint "Security Recommendations";
if ( mysql_version_eq(8) ) { if ( mysql_version_eq(8) ) {
infoprint "Skipped due to unsupported feature for MySQL 8"; infoprint "Skipped due to unsupported feature for MySQL 8.0+";
return; return;
} }