インストールできましたが初期パスワードでmysqlにアクセスしようとすると
[root@localhost /]# mysql -u root -p Enter password: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
となるので以下を試しました。がエラーです。
[root@localhost /]# systemctl stop mysqld [root@localhost /]# systemctl set-environment MYSQLD_OPTS="--skip-grant-tables" [root@localhost /]# systemctl start mysqld [root@localhost /]# mysql -u root mysql>update user set authentication_string=password("********") where user='root'; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '("********") where user='root'' at line 1
ググったのをコピペしてパスワードだけ変えたのですがうまくいかないです。
AND Host = 'localhost'
を追加してもダメでした。原因は何でしょうか?
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/01 13:16