How to reset Xtream Codes MySQL Root Password?

if for any reason you don't remember the Xtream Codes MySQL Root Password that you set during the Main Server installation, you can reset it with the following steps.

connect to your server using ssh

Run the following command:

sudo /etc/init.d/mysql stop

Start MySQL without a password

Run the following command. The ampersand (&) at the end of the command is required.

sudo mysqld_safe –skip-grant-tables &

Connect to MySQL

Run the following command:

mysql -uroot

Set a new MySQL root password

Run the following command:

Note: Change mynewpassword with your own password

use mysql;
update user set authentication_string=PASSWORD(“mynewpassword”) where User=’root’;
update user set authentication_string=PASSWORD(“mynewpassword”) where User=’root’;
flush privileges;
quit;

Stop and start the MySQL service
(Ubuntu and Debian) Run the following commands:

sudo /etc/init.d/mysql stop

sudo /etc/init.d/mysql start

Log in to the database
Test the new password by logging in to the database. 

mysql -u root -p

Enter your new password when prompted.

Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.