setting a password for user ‘root’ : wampserver way
When You open phpmyadmin from wampserver you’ll see message :
Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole by setting a password for user ‘.root’.
To change the password just follow this technique.
Technique I (visual way)
1. Open phpmyadmin
2. Click Privileges
3. Click Edit icon in same line where host “localhost” located.
4. Enter password by type it inside number 1 and 2 ( see picture)
Click Go and you’re done.
Technique II (command prompt)
Open command prompt by click :
Start -> Run
Type ‘cmd’ and hit Enter.
type following command :
(I mark the command in bold)
C:\wamp\bin\mysql>cd c:\wamp\bin\mysql\mysql5.1.36\bin
C:\wamp\bin\mysql\mysql5.1.36\bin>mysql -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 10
Server version: 5.1.36-community-log MySQL Community Server (GPL)
Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the current input statement.
mysql> use mysql;
Database changed
mysql> update user set password=password(‘typenewpasswordhere’) where host=’localhost’;
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0
mysql> flush privileges;
Query OK, 0 rows affected (0.01 sec)
mysql>
Whatever technique you want to use, you should change the password as suggested by phpmyadmin.
See you in other post.
Stay health!
- your configuration file contains settings (root with no password) that correspond to the default mysql privileged account your mysql server is running with this default is open to intrusion and you really should fix this security hole by setting a passwor
- wamp server mysql root password
- wampserver root password
- wamp server password mysql
- wampserver password
- fix this security hole by setting a password for user root
- wampserver change mysql password
- wampserver root pasword
- wampserver mysql password
- setting a password for user root
- and you really should fix this security hole by setting a password for user root
- wamp server root password
- xampp your configuration file contains settings (root with no password) that correspond to the default mysql privileged account your mysql server is running with this default is open to intrusion and you really should fix this security hole by setting a p
- setting wamp server privileges
- security hole by setting a password for user root
- wamp server password
- wampserver passwort
- wamp your configuration file contains settings (root with no password) that correspond to the default mysql privileged account your mysql server is running with this default is open to intrusion and you really should fix this security hole by setting a pa
- wampserver mysql root password
- how to set password root in wamp server
Related posts:
- phpmyadmin error : Cannot connect: invalid settings. phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection A few email enter my mailbox regard my last...
- Step by Step Install Drupal on WampServer : Vhost and Clean URL In previous post I have talk about fix ereg()...
- Step by Step install Joomla with WampServer Hello everybody, happy thanksgiving Today I try to explain...
- Install wordpress for home development : configure axigen email server part 1 At previous post I have written about : Install...
- Install wordpress for home development : setting domain Previous post talk about install wamp as foundation tool...
Related posts brought to you by Yet Another Related Posts Plugin.
If you enjoyed this post, please consider to leave a comment or subscribe to the feed and get future articles delivered to your feed reader.







