MySQL Forums
Forum List  »  Docs

Possibly incorrect statement in v5.6 §2.10.3 Securing the Initial MySQL Accounts
Posted by: John .
Date: February 17, 2015 07:25AM

The docs at http://dev.mysql.com/doc/refman/5.6/en/default-privileges.html seem to be outdated or incorrect.

"On Windows, there is one anonymous account that permits connections from the local host. Connections can be made by specifying a host name of localhost."

A fresh installation with the MySQL Installer, choosing Setup Type: Server Only, Server Configuration Type: Server Machine resulted in no anonymous users:

mysql> select version();
+------------+
| version() |
+------------+
| 5.6.23-log |
+------------+
1 row in set (0.00 sec)

mysql> select user, host, password from mysql.user;
+------+-----------+-----------------+
| user | host | password |
+------+-----------+-----------------+
| root | localhost | A password hash |
| root | 127.0.0.1 | A password hash |
| root | ::1 | A password hash |
+------+-----------+-----------------+
3 rows in set (0.00 sec)

Possibly this is due to the setup options I chose. If that is the case, I think it would be helpful to mention this in the docs.

Options: ReplyQuote


Subject
Views
Written By
Posted
Possibly incorrect statement in v5.6 §2.10.3 Securing the Initial MySQL Accounts
2463
February 17, 2015 07:25AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.