Kali ini saya akan berbagi tips Solusi Cara Reset User Root Mysql/MariaDB di Centos 7.
Mungkin anda pernah mengalami tidak bisa masuk ke mysql dari user root dikarenakan anda lupa password nya . Jangan khawatir saya akan berbagi tips untuk solusinya .
1. Wajib memiliki akes ke root OS centos 7 nya.
ssh root@IP_Address -p Port_number
2. Stop service mariadb
systemctl stop mariadb
3. Start mysql safemode
sudo mysqld_safe --skip-grant-tables &
4. Connect ke mysql
mysql -u root
5. Reset DB dan table
use mysql;
update user set authentication_string=PASSWORD("root@123") where User='root';
flush privileges;
quit;
6. cek process yang running
systemctl stop mariadb
ps-aux |grep mysql
– Kill process mysql tersebut
kill -9 20707
kill -9 20856
– Pastikan sudah tidak ada process mysql yang running
ps-aux |grep mysql
7. start service mariadb
systemctl start mariadb
8. Coba login ke mysql untuk user root
mysql -u root -p
Tutorial Via Video