default password for mysql ROOT code example

Example 1: set password mysql

-- In case the UPDATE command returns "Column 'Password' is not updatable" run
ALTER USER 'root'@'localhost' IDENTIFIED BY 'newPassword';
flush privileges;

Example 2: mysql set root password

use mysql;

update user set authentication_string=PASSWORD("mynewpassword") where User='root';

flush privileges;

quit

Example 3: default password of mysql

mysqladmin -u root password NEWPASSWORD

Example 4: mysql default user password

user:root
#The password is empty
password:
#If by accident you set the password and you don't remember it
service mysql stop #Stop mysql service
mysqld_safe --skip-grant-tables & #disable "login"
mysql #Log in into mysql, you should see mysql> in prompt
UPDATE mysql.user SET Password=PASSWORD('new-password') WHERE User='root';
FLUSH PRIVILEGES; #
exit; # exit from mysql
mysqladmin -u root -p shutdown # shutdown mysql service
service mysql start # Restart your service

Example 5: default password of mysql

mysql_secure_connection

Tags:

Sql Example