Wednesday, August 8, 2012
0
Wednesday, August 8, 2012
Unknown
Setting Password MySQL
Pada MySql biasanya kita tidak pernah memasukkan password saat ingin login ke mysql,
pada kali ini saya akan berbagi tips untuk membuat password di mysql....
pada kali ini saya akan berbagi tips untuk membuat password di mysql....
- Login ke mysql dengan user root
mysql -u root</li> - Gunakan database mysql
mysql> use mysql; - Update tabel user, isi field password dengan password_baru untuk User = root
mysql> update user set password=PASSWORD("password_baru") where User='root'; - Reload hak akses/privileges
mysql> flush privileges; - Keluar dari mysql
mysql> quit; - Coba login kembali menggunakan password
mysql -u root -p
Related Articles :
Do you like this article? Spread the words!
If you enjoyed this post, please consider leaving a comment or subscribing to the E-mail feed to have future articles delivered to your feed reader.
Subscribe to:
Post Comments (Atom)

0 Responses to “Setting Password MySQL”
Post a Comment