Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours on Instagram and YouTube and waste money on coffee and fast food, but won’t spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!

Learn from Guru Rajesh Kumar and double your salary in just one year.



Get Started Now!

How to change database password in XAMPP

To change the database password in XAMPP, you’ll need to follow these steps:

  1. Open XAMPP Control Panel: Launch the XAMPP control panel by running the “xampp-control.exe” file. You can usually find it in the XAMPP installation directory.
  2. Stop the MySQL Service: Locate the MySQL module in the control panel and click the “Stop” button to halt the MySQL service. This step ensures that there are no active connections to the database during the password change.
  3. Open the XAMPP Shell: In the XAMPP control panel, find the “Shell” button associated with the Apache module. Click on it to open the XAMPP Shell, which provides a command-line interface.
  4. Access the MySQL Command Line: In the XAMPP Shell, enter the following command and press Enter to access the MySQL command line
mysql -u root

5. By default, XAMPP uses “root” as the username for MySQL.

6. Change the Password: Once you’re in the MySQL command line, execute the following command to change the password for the root user:

ALTER USER ‘root’@’localhost’ IDENTIFIED BY ‘new_password’;

Replace 'new_password' with the desired password you want to set. Make sure to choose a strong and secure password.

6. Flush Privileges: After changing the password, execute the following command to flush the privileges, ensuring that the changes take effect immediately:

FLUSH PRIVILEGES;

7. Exit the MySQL Command Line: To exit the MySQL command line, type “exit” and press Enter.

8. Start the MySQL Service: Go back to the XAMPP control panel and click the “Start” button for the MySQL module. This action will restart the MySQL service with the new password in effect.

After following these steps, your XAMPP MySQL database password will be successfully changed to the new password you specified. Make sure to update your application or scripts that connect to the database with the new password to ensure proper functionality.

Related Posts

How We Fixed “sonar-scanner: command not found” and Successfully Analyzed Our Project with SonarQube

Running static code analysis with SonarQube is essential for maintaining clean, quality code. Recently, while working on our Laravel microservice project mhn-doctors-ms, we hit a common yet…

Is SonarQube Community free Edition Good for Laravel Projects?

When working on web development projects using Laravel, JavaScript, and jQuery, maintaining code quality becomes just as important as building features. That’s where tools like SonarQube come…

Laravel Throttle Middleware: How to Increase API Rate Limit Safely and for 429 Too Many Requests

If you’re working with Laravel APIs, you might have encountered this default throttle setting: This line lives in your app/Http/Kernel.php file and controls how many requests a…

Fixing MySQL Error: Incorrect Definition of mysql.column_stats Table

The Problem While working on your MySQL server, you might come across this error in your error log: This error usually shows up after an upgrade or…

Fixing Laravel Migration Error: “Unknown Collation: utf8mb4_0900_ai_ci”

While working with Laravel and MySQL, you might run into an error during migrations like this one: Why This Happens The collation utf8mb4_0900_ai_ci is introduced in MySQL…

Why Dental Surgery Is Good and Important

Dental health plays a vital role in our overall well-being, yet it’s often overlooked until problems become serious. Dental surgery is a powerful solution that not only…

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x