ERROR 1698 (28000): Access denied for user ‘root’@’localhost’ (using password: yes/No) MySQL

ERROR 1698 (28000): Access denied for user ‘root’@’localhost’ (using password: yes/No) MySQL

The error 1698 (28000): Access denied for user ‘root’@’localhost’ (using password: yes or not) occurs when you have not installed MySQL properly or have not set privileges for the root user at the time of installation. on linux ubuntu server.

The error message you provided, “ERROR 1698 (28000): Access denied for user ‘root’@’localhost’ (using password: yes/No) MySQL,” occurs when attempting to connect to a MySQL database using the ‘root’ user account from the ‘localhost’ host, but the provided password is incorrect or does not set privileges of the ‘root’ user.

Here’s a breakdown of the error message:

  • ERROR 1698: This is the error code returned by MySQL.
  • (28000): This is the error number within the MySQL error code system. The number 28000 generally corresponds to “Access denied.”
  • Access denied for user 'root'@'localhost': This part of the error message indicates that the user account ‘root’ is being denied access when trying to connect from the ‘localhost’ host.
  • (using password: yes/No): This part of the error message indicates that MySQL is expecting a password, and it’s indicating whether the password was provided (‘yes’) or not (‘No’).

The most common reasons for this error include:

  1. Incorrect Password: The password you provided for the ‘root’ user is incorrect.
  2. Password Policy: MySQL has specific password requirements, such as minimum length and complexity. Make sure the password you’re using meets these requirements.
  3. Privilege Issues: The ‘root’ user might not have the necessary privileges to connect from the ‘localhost’ host. Check the user’s privileges in the MySQL user table.
  4. Authentication Method: MySQL might be using a different authentication method than the one you’re providing. MySQL 8.0 introduced a new authentication plugin called ‘caching_sha2_password’, which might require a different connection method.
  5. Connection Parameters: Ensure that you’re specifying the correct host and port in your connection string.
  6. If you are trying to log in to your MySQL for the first time or you forgoted to set password, while installing mysql. Then you get this ERROR 1698 (28000): Access denied for user ‘root’@’localhost’. There can be two reasons for the error to appear. First of all, you have to not install MySQL correctly. Or forget to set the root user password in MySQL.

To troubleshoot and resolve this issue, you can try the following steps:

  1. Double-check the password you’re providing for the ‘root’ user. Make sure it’s correct and meets any password policy requirements.
  2. Verify the privileges of the ‘root’ user using the MySQL SHOW GRANTS FOR 'root'@'localhost'; command.
  3. If you’re using MySQL 8.0 or newer, you might need to update the authentication method for the ‘root’ user. You can change the authentication method using the ALTER USER statement.
  4. If you’re still encountering issues, you might need to reset the ‘root’ password if it’s been forgotten or lost.
  5. Make sure you’re specifying the correct host and port in your connection string.

[Solved] MySQL – ERROR 1698 (28000): Access denied for user ‘root’@’localhost’ (using password: yes or No)

Here are two methods to fix the following errors on linux ubuntu server, as follows:

Method 1: Fix error 1698 (28000): Access denied for user using mysql_secure_installation

Now, start your terminal or command line and run the following command to set a password for your MySQL root user:

sudo mysql_secure_installation 

Once you have executed the above command. After that, a prompt will open on the terminal or command line in which you will have to type the password and confirm the password. Then press enter to set a password for your MySQL root user.

If an error is not resolved even after using the first method, then close the terminal and follow the second method.

Method 2: Fix error 1698 (28000): Access denied for user using Alter

When you install MySQL for the first time on your server or machine, you may not get the option to set a password. If so, you will need to log in to MySQL as the root user.

Most of the time, users may try to log in to MySQL as “mysql -u user” or “mysql -u root”, but it won’t work because “user@localhost” has not yet been created on your mysql server, and root cannot be accessed without sudo privileges.

If you try to login to your mysql server using the command “mysql -u root@localhost” then you will get this error:

ERROR 1698 (28000): Access denied for user 'root'@'localhost'

So for this, you should use sudo command to login to your mysql server:

sudo mysql -u root

Now you have login to your MySQL server using above command. But there is a small problem you cannot log in to MySQL without sudo privileges, and MySQL can be accessed by any privileged or sudo user.

To prevent that, you can set a password prompt to appear whenever anyone tries to log in.

Now, execute the following command on terminal or command line to check password mechanism or plugin is attached to your root account:

mysql> SELECT User, plugin from mysql.user ;

Once you have executed the above command. After that, on your terminal, the support of your MySQL Mechanism will be shown like “mysql_native_password” or the latest caching_sha2_password on later version 8.0.0.

If your mysql server supports machines of “caching_sha2_password” then you have to use the below command. So that you can change or update the password of the root user in your MySQL server.

mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH 'mysql_native_password' BY '[ENTER-NEW-PASSWORD]';

Now execute the following command on terminal or command line to restart the server to apply the changes:

sudo systemctl restart mysql.service

Conclusion

That’s all. In this tutorial, you have learned simple two ways how to resolve 1698 (28000) Access denied for user ‘root’@’localhost’.

Recommended Tutorials

AuthorAdmin

Greetings, I'm Devendra Dode, a full-stack developer, entrepreneur, and the proud owner of Tutsmake.com. My passion lies in crafting informative tutorials and offering valuable tips to assist fellow developers on their coding journey. Within my content, I cover a spectrum of technologies, including PHP, Python, JavaScript, jQuery, Laravel, Livewire, CodeIgniter, Node.js, Express.js, Vue.js, Angular.js, React.js, MySQL, MongoDB, REST APIs, Windows, XAMPP, Linux, Ubuntu, Amazon AWS, Composer, SEO, WordPress, SSL, and Bootstrap. Whether you're starting out or looking for advanced examples, I provide step-by-step guides and practical demonstrations to make your learning experience seamless. Let's explore the diverse realms of coding together.

Leave a Reply

Your email address will not be published. Required fields are marked *