ERROR 1045 (28000): Access denied for user 'nihat'@'localhost' (using password: NO) sql code example
Example 1: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
sudo service mysql stop
sudo mkdir /var/run/mysqld
sudo chown mysql: /var/run/mysqld
sudo mysqld_safe --skip-grant-tables --skip-networking &
mysql -u root mysql
UPDATE mysql.user SET authentication_string=PASSWORD('YourNewPasswordBuddy'), plugin='mysql_native_password' WHERE User='root' AND Host='localhost';
FLUSH PRIVILEGES;
EXIT;
sudo service mysql restart
mysql -u root -p
Example 2: windows error 1045 (28000): access denied for user 'root'@'localhost' (using password: yes)
update user set authentication_string=password('my_password') where user='root';