I've tried everything I've even uninstalled and installed versions MySQL 8.0.0 all the way up to 8.0.28.
I'm on a Mac M1 Here's what I've tried:
mysql -u root -p
Applied Password from the install*
This is what I got back:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
Stop Mysql Server Quit Terminal
sudo /usr/local/mysql/bin/mysqld_safe --skip-grant-tables
Received:
2022-04-06T22:28:02.6NZ mysqld_safe Logging to '/usr/local/mysql/data/cyndrias-MBP.lan.err'.
2022-04-06T22:28:02.6NZ mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data
2022-04-06T22:28:03.6NZ mysqld_safe mysqld from pid file /usr/local/mysql/data/cyndrias-MBP.lan.pid ended
Stop Mysql Server Quit Terminal
Input:
sudo /usr/local/mysql/bin/mysql -u root
entered Password*
Received:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
How are you launching mysql? I found that adding the
--skip-grant-table
flag allows me to connect without a password on the first entry. So for me, this looks like:Then to connect: