- Start the Apache Server and MySQL instances from the XAMPP control panel.
- After the server started, open any web browser and give http://localhost:8085/phpmyadmin/ (if you are running XAMPP on 8085 port). This will open the phpMyAdmin interface. Using this interface we can manager the MySQL server from the web browser.
- In the phpMyAdmin window, select SQL tab from the right panel. This will open the SQL tab where we can run the SQL queries.
- Now type the following query in the textarea and click Go
UPDATE mysql.user SET Password=PASSWORD('rootPass') WHERE User='root'; FLUSH PRIVILEGES;
- Now you will see a message saying that the query has been executed successfully.
- If you refresh the page, you will be getting a error message. This is because the phpMyAdmin configuration file is not aware of our newly set root passoword. To do this we have to modify the phpMyAdmin config file.
- Open the file [XAMPP Installation Path] / phpmyadmin / config.inc.php in your favorite text editor.
- Search for the string
$cfg\['Servers'\]\[$i\]['password'] = '';
and change it to like this,$cfg\['Servers'\]\[$i\]['password'] = '
Here the ‘password’ is what we set to therootPass
';root
user using the SQL query. - Now all set to go. Save the config.inc.php file and restart the XAMPP server.
Wednesday, February 8, 2017
change the root password for MySQL in XAMPP
Labels:
databse,
mysql,
phpmyadmin,
root password settings,
sqlmyadmin,
xampp
change the root password for MySQL in XAMPP
Reviewed by Neeraj Kumar Jha
on
5:04 AM
Rating: 5
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment