To change the password for a MySQL user, run
mysqladmin -u user_name_here -p password new_password_here
Or via SQL
UPDATE mysql.user SET Password=PASSWORD('NEW_PASSWORD_HERE') WHERE User='USER_NAME_HERE'; FLUSH PRIVILEGES;
Your email address will not be published. Required fields are marked *
Comment *
Your Name *
Your E-mail *
Website
Save my name, email, and website in this browser for the next time I comment.
Submit Comment