Reset Password Root MySQL

>> Senin, 23 Maret 2009

Pusing juga ketika hendak login ke MySQL password root ditolak terus, sepertinya waktu mengganti password root ada kesalahan teknis. Susah juga kalau harus install ulang servernya, lebih baik cari cara untuk mengubah kembali password root.

  1. matikan servis mysql
    # /etc/init.d/mysql stop
  2. start mysql dalam bentuk safe mode tanpa password
    mysqld_safe --skip-grant-tables &
  3. buat koneksi ke mysql
    # mysql -u root
  4. buat password root yang baru
    mysql> use mysql;
    mysql> update user set password=PASSWORD("NEW-ROOT-PASSWORD") where User='root';
    mysql> flush privileges;mysql> quit
  5. stop mysql
    # /etc/init.d/mysql stop
  6. start mysql normal mode
    # /etc/init.d/mysql start

0 komentar:

  © Blogger templates Sunset by Ourblogtemplates.com 2008

Back to TOP