Friday, April 24, 2015

How to create the root password in MySql Server?


How to create the root password in MySql Server (hallah pake bahasa inggris segala, emang bisa? Ya... latiahanlah, kalo salah, pasti ada yang ngingetin. Yang penting, action he…he…). Ya, Bagaimana cara membuat password root di MySql Server? Mungkin ada yang bingung.  Kayak saya. Nah ini langkah-langkahnya
Langkah pertama: masuk dulu sebagai root mysql dengan mengetikan:
C:\xampp\mysql\bin>mysql –u root
Jika berhasil maka akan muncu pesan:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.0.51b-community-nt MySQL
Community Edition (GPL)
Type 'help;' or '\h' for help. Type '\c' to
clear the buffer.
mysql>

Langkah kedua: Aktifkan database MySql. Ikuti langkah berikut:
mysql>SHOW DATABASES;
+--------------------+
| Database           |
+--------------------+
| mysql                 |
| test                     |
+--------------------+ 

Langkah ketiga: Aktifkan database mysql
mysql>USE mysql
langkah keempat: adalah mengaktfkan password root. Silahkan Anda ketikan
mysql>UPDATE user SET password=password('mypassword') WHERE user='root';
Jika sukses maka aakn muncul pesan
Query OK, 2 rows affected (0.03 sec)
Rows matched: 2  Changed: 2
Warnings: 0
Setelah itu langsung dilanjutkan dengan perintah FLUSH PRIVILEGES
mysql>FLUSH PRIVILEGES
Mari kita periksa hasil dari perintah diatas dengan mengetikan
mysql>SELECT user, host, password from user;
+----+-------------+-----------------------------------+
| user | host          | password                                |
+----+-------------+-----------------------------------+
| root | localhost  |xxxxxxxxxxxxxxxxxxxxxxxx |
| root | %             |xxxxxxxxxxxxxxxxxxxxxxxx |
+-----+------------+-----------------------------------+


Ok... Semoga bermanfaat.

No comments:

Post a Comment