10
J
Reset the MariaDB Root Password
If you forget your root MariaDB password, don’t worry and be sad because it can be reset easily with this tutorial.
Stop the current MariaDB server instance, then restart it with an option to not ask for a password:
$ sudo systemctl stop mariadb
$ sudo mysqld_safe --skip-grant-tables &
Reconnect to the MariaDB server with the MariaDB root account:
$ mysql -u root
Use the following commands to reset root’s password. Replace password with a strong password:
use mysql;
update user SET PASSWORD=PASSWORD("password") WHERE USER='root';
flush privileges;
exit
Then restart MariaDB:
$ sudo systemctl start mariadb
https://robbinespu.github.io/eng/2018/03/29/Reset_mariadb_root_password.html