mysql -u root
これで入れない
解決
sudo mysql -u root
これで入れる
UPDATE mysql.user SET authentication_string=PASSWORD('newpwd') WHERE User='root';
FLUSH PRIVILEGES;
exit
mysql -u root
これで入れない
sudo mysql -u root
これで入れる
UPDATE mysql.user SET authentication_string=PASSWORD('newpwd') WHERE User='root';
FLUSH PRIVILEGES;
exit
コメント