Bug #77227 | mysqld_multi stop does not work | ||
---|---|---|---|
Submitted: | 2 Jun 2015 15:01 | Modified: | 9 Jun 2015 8:47 |
Reporter: | Georgi Iovchev | Email Updates: | |
Status: | Verified | Impact on me: | |
Category: | MySQL Server: Command-line Clients | Severity: | S3 (Non-critical) |
Version: | 5.6.25 | OS: | Any (CentOS 6.6 / 7.0) |
Assigned to: | CPU Architecture: | Any | |
Tags: | regression |
[2 Jun 2015 15:01]
Georgi Iovchev
[8 Jun 2015 11:31]
MySQL Verification Team
Thank you for the report. I didn't try the issue at my end but the way you have updated the root password could be the issue here, please set the root password as: UPDATE mysql.user SET Password = PASSWORD('123456') WHERE User = 'root'; FLUSH PRIVILEGES; Please test at your end once again after resetting root password and report us back if you are still having the issue.
[8 Jun 2015 11:33]
MySQL Verification Team
Bug #77240 marked as duplicate of this
[8 Jun 2015 17:19]
Georgi Iovchev
Sorry my mistake with the password, I have typed a bit wrong example. In my real setup the password have been properly updated and is hashed in mysql.user table. Also I have tried with another user, dedicated only for it. grant shutdown on multi@localhost identified by '123456' Still the same result - error: 'Access denied for user 'multi'@'localhost' (using password: YES)
[8 Jun 2015 17:22]
Georgi Iovchev
another wrong example :) I have to stop typing and start pasting... in my previous comment user creation should be: grant shutdown on *.* to multi@localhost identified by '123456';
[9 Jun 2015 8:47]
MySQL Verification Team
Thank you for the feedback. Observed this with 5.6.25 build(5.6.24 not affected) on Oracle Linux Server release 7.0. Thanks, Umesh
[9 Jun 2015 8:48]
MySQL Verification Team
test results
Attachment: 77227.txt (text/plain), 23.42 KiB.
[10 Jul 2015 12:39]
Frédéric Condette
I have the same problem. After adding some traces in mysqld_multi, I have found the problem : since 5.6.25, my_print_defaults no longer returns password in readable form (we have to use the "--show" option to obtain it). mysqld_multi call my_print_default to obtain the user and password to use with mysqladmin. Also, to be able to stop instances with mysqld_multi, I have made a modification in the "defaults_for_group" function of mysqld_multi. I have changed the following line : my $com= join ' ', 'my_print_defaults', @defaults_options, $group; with : my $com= join ' ', 'my_print_defaults -s', @defaults_options, $group; Regards
[5 Aug 2015 12:27]
MySQL Verification Team
Bug #77946 marked as duplicate of this
[27 Oct 2015 12:13]
MySQL Verification Team
Bug #78974 marked as duplicate of this
[2 Jun 2016 8:52]
MySQL Verification Team
Bug #81682 marked as duplicate of this
[9 Jul 2016 20:08]
Michel SALAIS
It is always there with 5.7.13 on CentOS 6.6
[20 Jul 2016 6:24]
MySQL Verification Team
Bug #82288 marked as duplicate of this
[15 Feb 2017 14:07]
Martin Gubala
Still present in version 5.7.17. Workaround with configuring pass instead of password works.
[19 Dec 2017 14:33]
Jim Graf
Still present in version 5.7.20. Workaround with configuring pass instead of password works.