Skip to content
  • Home
  • Search
  • Tools
  • About
  • Terms of Service Agreement
  • Log In
  • Guest

MariaDB: Reset Root Password

Posted on December 15, 2020December 20, 2020 By Andre Dias
database

Table of Contents

  • PROBLEM
  • ENV
  • SOLUTION
    • USING A TEMPORARY PASSWORD
    • WHEN THE DATABASE FAILS TO START
    • TESTING AND SWITCHING TO DEFINITIVE PASSWORD
  • DIFFERENT BEHAVIORS DUE TO ENVIRONMENT DIFFERENCES
  • ADDITIONAL SOURCES
    • ALTERNATIVE SITE

PROBLEM

This procedure resets the MariaDB root password when it is not possible to access the database returning:

ERROR 1045 (28000): Access denied for user ‘root’@’localhost’ (using password: YES)

 

ENV

debian 10/9
10.x , 10.3.27-MariaDB


SOLUTION

– Stop database:
sudo systemctl stop mariadb

– Test:
sudo systemctl status mariadb

You shall get;
Status: “MariaDB server is down”
To return to console, use Ctrl+C

– This command shall return empty:
sudo pgrep mysqld

– Starting the database using safe mode:
sudo mysqld_safe –skip-grant-tables –skip-networking &
or
sudo mysqld_safe –skip-grant-tables &

“Enter” to return to prompt.

 

USING A TEMPORARY PASSWORD

– Entering the database prompt without user or password:
mysql -u root

use mysql;
flush privileges;
update user SET PASSWORD=PASSWORD(‘secret’) WHERE USER=’root’;
GRANT ALL PRIVILEGES ON root.* TO ‘root’@’localhost’ WITH GRANT OPTION;
flush privileges;
quit

– kill all mysqld processes
sudo pgrep mysqld

– Kill by the PID numbers returned, for example:
sudo kill -9 1234
sudo kill -9 4567

– Start the database:
sudo systemctl start mariadb

WHEN THE DATABASE FAILS TO START

 During the start, if it hangs, it is necessary to kill all processes.
It happens when some process is left behind, not being killed.
Unfortunately, sometimes when killing the processes doesn’t work because another new process starts just after, I just got solution rebooting the machine even though using killall, etc.
– To check:
sudo systemctl status mariadb

TESTING AND SWITCHING TO DEFINITIVE PASSWORD

– Access the database again to test the “secret” temporary password and also to change to the definitive password:

mysql -u root -p
pass: secret

use mysql;
flush privileges;
UPDATE mysql.user SET authentication_string = PASSWORD(‘MY_DEFINITIVE_PASSWORD’) WHERE User = ‘root’ AND Host = ‘localhost’;
GRANT ALL PRIVILEGES ON root.* TO ‘root’@’localhost’ WITH GRANT OPTION;
GRANT RELOAD ON *.* TO ‘root’@’localhost’;
flush privileges;
quit

 

– Access the database again to test the definitive password:
mysql -u root -p
pass: MY_DEFINITIVE_PASSWORD


***NOTE:

If after switching to the definitive password, the problem comes back denying access, it is because the characters used in the password caused the issue.
Avoid password like this:
Abc1234#-_ (the -_ didn’t work during my attempts)
For sure, use a password with just numbers and letters.
To get confidence, repeat the procedure.
If you desire to use special chars, you may try after making sure that you got success at least once, that way you may discover which special char to avoid in your password.

 

DIFFERENT BEHAVIORS DUE TO ENVIRONMENT DIFFERENCES

This procedure was executed several times successfully, but you may get some issue with some command shown above.
Below, there are some alternatives, not all of them of course, that you may try if some command fails.

set password for ‘root’@’localhost’ = password(‘secret’);
– or
ALTER USER ‘root’@’localhost’ IDENTIFIED BY ‘secret’;

 

ADDITIONAL SOURCES

www.digitalocean.com/community/tutorials/how-to-reset-your-mysql-or-mariadb-root-password

robbinespu.github.io/eng/2018/03/29/Reset_mariadb_root_password.html

 

ALTERNATIVE SITE

alsdias.blogspot.com/2020/12/mariadb-error-1045-28000-access-denied.html

 

@SYSREF:

y;reset root password<memo<mariadb;. 

Andre Dias
Andre Dias

Brazilian system analyst graduated by UNESA (University Estácio de Sá – Rio de Janeiro). Geek by heart.

Post navigation

❮ Previous Post: CS: Complexidade de Linguagem
Next Post: Webinar: SolarWinds Leaking By Cycode December, 2020 ❯

Search

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
Filter by Categories
angular
bootstrap
browser
computer science
container
data persistence
database
devops
editors
hardware
health
hosting
info
internet
it
java
javascript
network
node.js
play
protocol
security
self-help
selfhelp
server
services
soft
software engeneering
sql
support
Systems
techs
Uncategorized
versioning
web
web design
windows
wordpress

Recent Posts

  • Angular From Scratch Tutorial – Step 9: Modal
  • Angular From Scratch Tutorial – Step 8: Miscellany
  • Angular From Scratch Tutorial – Index
  • angular: Reading JSON files
  • NODE.JS: SEQUELIZE: MVC Project – 4TH STEP

Categories

  • angular (19)
  • bootstrap (6)
  • browser (4)
  • computer science (4)
  • container (1)
  • data persistence (2)
  • database (11)
  • devops (1)
  • editors (1)
  • hardware (4)
  • health (2)
  • hosting (1)
  • info (1)
  • internet (2)
  • it (1)
  • java (13)
  • javascript (32)
  • network (6)
  • node.js (1)
  • play (1)
  • protocol (1)
  • security (4)
  • self-help (1)
  • selfhelp (1)
  • server (2)
  • services (1)
  • soft (1)
  • software engeneering (1)
  • sql (1)
  • support (2)
  • Systems (1)
  • techs (3)
  • Uncategorized (2)
  • versioning (6)
  • web (1)
  • web design (5)
  • windows (3)
  • wordpress (4)

Copyright © 2025 .

Theme: Oceanly by ScriptsTown

We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept All”, you consent to the use of ALL the cookies. However, you may visit "Cookie Settings" to provide a controlled consent.
Cookie SettingsAccept All
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT