IやったのUbuntuでMySQLを使用するには、次の手順のために拒否されましたmy.cnfの:その後MYSQLのアクセスは、ユーザのルート '@ 'localhost' の
[client]
user=root
password=SecurePassword
[mysqld]
...
default-time-zone = '+0:00'
:
sudo service mysql start
mysql -u root
mysql> SHOW GRANTS FOR [email protected]
+--------------------------------------------------------------------------------------------------+
| Grants for [email protected] |
+--------------------------------------------------------------------------------------------------+
| GRANT USAGE ON *.* TO 'root'@'localhost' IDENTIFIED BY PASSWORD '[here is the Securepassword]' |
+-------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)
mysql>
GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION;
と私はエラーが表示されます。
Access denied for user 'root'@'localhost' (using password: YES)
'ini'で' bind-address = localhost'を確認してください。 – user2339071