summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2015-04-28 21:27:43 +0200
committerSergei Golubchik <serg@mariadb.org>2015-04-29 12:40:53 +0200
commitf632b51d9958ea807e6827010708b99cdfc73efd (patch)
tree51ffbc61d8ddbaf6b12088ac6341226791e443b8
parent6f17e233bf7f4de20dda8fb31f63aa52452c4e0a (diff)
downloadmariadb-git-f632b51d9958ea807e6827010708b99cdfc73efd.tar.gz
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
-rw-r--r--sql/mysqld.cc3
1 files changed, 2 insertions, 1 deletions
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;