mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
BUG#17324415:GETTING MYSQLD --HELP AS ROOT EXITS WITH 1
Analysis -------- Running 'MYSQLD --help --verbose' as ROOT user without using '--user' option displays the help contents but aborts at the end with an exit code '1'. While starting the server, a validation is performed to ensure when the server is started as root user, it should be done using '--user' option. Else we abort. In case of help, we dump the help contents and abort. Fix: --- During the validation, we skip aborting the server incase we are using the help option under the condition mentioned above. NOTE: Test case has not been added since it requires using 'root' user.
This commit is contained in:
parent
c1fa843d65
commit
df1df7eaae
1 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
|||
/* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
/* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights
|
||||
reserved.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
|
@ -1681,7 +1682,7 @@ static struct passwd *check_user(const char *user)
|
|||
}
|
||||
if (!user)
|
||||
{
|
||||
if (!opt_bootstrap)
|
||||
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");
|
||||
unireg_abort(1);
|
||||
|
|
Loading…
Reference in a new issue