MySQL Reset password: Perbedaan revisi
Dari IGNwiki
Baris 1: | Baris 1: | ||
− | Reset password root pada server MYSQL | + | Reset password root pada server MYSQL |
Lakukan: | Lakukan: | ||
Baris 9: | Baris 9: | ||
Login/konek sebagai root | Login/konek sebagai root | ||
− | + | $ mysql -u root | |
Update password root | Update password root | ||
− | |||
mysql> UPDATE mysql.user SET Password = PASSWORD ('isi_password_baru') WHERE User='root'; | mysql> UPDATE mysql.user SET Password = PASSWORD ('isi_password_baru') WHERE User='root'; | ||
mysql> FLUSH PRIVILEGES; | mysql> FLUSH PRIVILEGES; |
Revisi terkini pada 4 Mei 2010 06.04
Reset password root pada server MYSQL
Lakukan: Matikan service MYSQL
# service mysqld stop
Jalankan service MYSQL dalam safe mode
# mysqld_safe --skip-grant-tables
Login/konek sebagai root
$ mysql -u root
Update password root
mysql> UPDATE mysql.user SET Password = PASSWORD ('isi_password_baru') WHERE User='root'; mysql> FLUSH PRIVILEGES; mysql> quit;
Restart service MYSQL
# /etc/init.d/mysqld restart