Welcome to Egypt Forums Mark forums read | Egypt Main Page
Egypt Forums
Arabic Movies



Articles Thread, Reset MySQL root password in MySQL / PostGRESQL; Reset MySQL root password As a database administrator, you might forget the root password for your database. It is a ...

Short Link: http://forum.egypt.com/enforum/showthread.php?t=6703


Reply
LinkBack Thread Tools Display Modes
Reset MySQL root password
 
 
The God Father
Developer's Avatar

Reply With Quote
 
Join Date: Jul 2008
Location: NDC
Posts: 5,425
26-11-2008, 08:43 PM
 
Reset MySQL root password


As a database administrator, you might forget the root password for your database. It is a serious problem. This tutorial is to teach you how to reset the root password if you forget it.

  1. Stop the MySQL service./etc/init.d/mysql stop
  2. Start the MySQL in the save mode.mysqld_safe –skip-grant-tables &
  3. Login into MySQL as root usermysql -u root
  4. Update the root user password.mysql> use mysql;
    mysql> update user set password=PASSWORD(”NEW PASSWORD”) where user=’root’;
    mysql> flush privileges;
    mysql> quit;
  5. Restart the MySQL service & try to login using the new password./etc/init.d/mysql stop
    /etc/init.d/mysql start

    mysql -u root -p
__________________
I Love Walking In The Rain Cuz Nobody Know I'm Crying !!
 
 
 
Reply

Articles Thread, Reset MySQL root password in MySQL / PostGRESQL; Reset MySQL root password As a database administrator, you might forget the root password for your database. It is a ...

Short Link: http://forum.egypt.com/enforum/showthread.php?t=6703


Bookmarks

Tags
mysql, password, reset, root


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Where to install vBulletin .. root or "forums"? Developer Articles 0 23-10-2008 03:29 AM
MySQL 5.0.51b Developer Software and Programs 0 22-10-2008 04:32 PM
MySQL 5.0.51b Developer Software and Programs 0 09-10-2008 06:53 PM
Reset any windows password(including Vista) Developer Software and Programs 0 30-09-2008 07:05 AM
Windows Key - Reset any Windows account password! Developer Operating System 0 29-07-2008 08:10 PM