vote up 1 vote down star
1

I have long since forgotten the password for the root user on one of my boxes. Is there a way I can change it without having to log in to the instance, or will I have to reinstall?

flag

3 Answers

vote up 2 vote down check

Step 1

Stop database:

shell> /etc/init.d/mysql stop

Step 2

Restart database

  • without password autentification
  • without connection to the network

Access to database is only possible through it's sock file '/var/lib/mysql/mysql.sock'.

shell> mysqld --user=mysql --pid-file=/var/lib/mysql/mysqld.pid \
       --socket=/var/lib/mysql/mysql.sock --datadir=/var/lib/mysql \
       --skip-grant-tables --skip-networking  &

Step 3

Connect to the database and change password:

shell> mysql --database mysql --socket=/var/lib/mysql/mysql.sock

If you want to, show all users:

mysql> select User, password from user;

Set new password:

mysql> update user set password=password('NEW PASS') WHERE User='USERNAME';

Leave database connection:

mysql> exit

Step 4

Restart database server "normally".

shell> kill `cat /var/lib/mysql/mysqld.pid`
shell> /etc/init.d/mysql start
link|flag
vote up 4 vote down

This might help "Recover MySQL root password".

link|flag
vote up 1 vote down

A quick Google resulted in this answer. In the root shell type:

mysqladmin -u root password <password>
link|flag
Its good to have the answer here even though it is discoverable on Google. It helps Stack Overflow become a more comprehensive repository of programming answers so I'm going to mod up this question. – Adam Pierce Sep 10 '08 at 5:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.