Monday, November 25, 2013

How to reset the MySQL Server admin/root Password

The following are the steps to restore/reset MySQL admin/root password:

Step-1: Stop your MySQL server

There are many ways to do this:
  • service mysql stop  or
  • service mysqld stop
[root@ranga ranga]# service mysqld stop

Step-2: Start your MySQL server in safe mode by using following command.

mysqld_safe --skip-grant-tables --autoclose

It will start the MySQL server with out asking any passwords.

[root@ranga ranga]# mysqld_safe --skip-grant-tables --autoclose

Step-3: Connect to MySQL server.

[root@ranga ranga]# mysql
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 1 to server version: 3.23.41

Type 'help;' or 'h' for help. Type 'c' to clear the buffer.


Step-4: Run the below commands, to setup new password for the root or admin.
 
mysql> USE mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed


mysql> UPDATE mysql.user SET Password=
PASSWORD("ranga")
-> WHERE user="root";

Query OK, 2 rows affected (0.04 sec)
Rows matched: 2 Changed: 2 Warnings: 0

mysql> flush privileges;
Query OK, 0 rows affected (0.01 sec)


The flush statement tells the server to reload the grant tables into memory so that it notices the password change. 

mysql> exit;


Now your MySQL Server password is successfully reseted.

Step-5: Restart MySQL server. This can be done in two ways.

1. Stop and Start the Server

[root@ranga ranga]# service mysqld stop
[root@ranga ranga]# service mysqld start

(or)

2. Directly Restart the Server

[root@ranga ranga]# service mysqld restart

Step-6: Now login with your new password

[root@ranga ranga]#mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 5 to server version: 4.1.15

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql>

Related Posts:

  • Displaying the Greeting Message based on Time in MySQLHi, My requirement is based on Current time i want to display Greeting message.For example, if time is less than 12PM then i need to display "Morning" and if time is less than 5PM then i need to display "Afternoon" and i… Read More
  • Hibernate4 One-to-One Relationship Example Using AnnotationsIn this article we are going to create a project to implement step by step one-to-one association example using Annotations with Maven project.OneToOne Relationship:A one-to-one relationship occurs when one entity is related … Read More
  • How to display all tables in different databasesIn this article, we will see how to connect to the different databases(MySQL, Oracle, PostgreSQL, DB2) and how to display the all table names. MySQLConnect to the database:mysql [-u username] [-h hostname] database-nameT… Read More
  • Finding the Nth heighest Salary in SQLProgram: Write a SQL query to get the Nth highest salary from Employee table. Here N can be any number.Solution:SELECT e.* FROM Employee e;Step1: If you want to find the height salary, initially you need to sort the empl… Read More
  • Inheritance in HibernateInheritance in Hibernate: Java is object oriented language and inheritance is one of main functionalities of java. Relational model can implement "is a" and "has a" relationship. Relational model supports only “has a” re… Read More

0 comments: