Answers for "mysql default password login no password"

SQL
0

default password of mysql

mysqladmin -u root password NEWPASSWORD
Posted by: Guest on September-11-2020
1

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
Posted by: Guest on April-07-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language