Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gmmastros on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

root password created without password() function

Status
Not open for further replies.

antechinus

Technical User
Feb 18, 2001
1
AU
I have just created a root password in MySQL without using the PASSWORD function.

in the user table i put in a root password, like this.....

mysql> UPDATE user SET Password='new_password' WHERE user='root';
mysql> FLUSH PRIVILEGES;

Now i am denied access. How do start the mysql server now? The manual wasnt clear that the password() function should have been used.

Please help. Thank you.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top