From 1ccba5e556ab73e4fd071f47cc92eab348e44e0b Mon Sep 17 00:00:00 2001 From: Long Radix <74498097+longradix@users.noreply.github.com> Date: Tue, 28 Mar 2023 19:44:04 +0200 Subject: [PATCH] Update mysqltuner.pl Syntax --- mysqltuner.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mysqltuner.pl b/mysqltuner.pl index 3af3c1a..4da82f1 100644 --- a/mysqltuner.pl +++ b/mysqltuner.pl @@ -1915,7 +1915,7 @@ sub system_recommendations { . $opt{'maxportallowed'} . "allowed."; 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 { @@ -1929,7 +1929,7 @@ sub system_recommendations { if ( is_open_port($banport) ) { badprint "Banned port: $banport is opened.."; push( @generalrec, -"Port $banport is opened. Consider stopping program handling this port." +"Port $banport is opened. Consider stopping program handling over this port." ); } else { @@ -1947,7 +1947,7 @@ sub security_recommendations { subheaderprint "Security Recommendations"; 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; }