From f632b51d9958ea807e6827010708b99cdfc73efd Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Tue, 28 Apr 2015 21:27:43 +0200 Subject: [PATCH] MDEV-7987 Fatal error: Please read "Security" section of the manual to find out how to run mysqld as root! update the error message to refer to the knowledge base that (now) has an article about this use case --- sql/mysqld.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sql/mysqld.cc b/sql/mysqld.cc index b3c33c2e46a..0178f927bab 100644 --- a/sql/mysqld.cc +++ b/sql/mysqld.cc @@ -2031,7 +2031,8 @@ static struct passwd *check_user(const char *user) { if (!opt_bootstrap && !opt_help) { - sql_print_error("Fatal error: Please read \"Security\" section of the manual to find out how to run mysqld as root!\n"); + sql_print_error("Fatal error: Please consult the Knowledge Base " + "to find out how to run mysqld as root!\n"); unireg_abort(1); } return NULL;