mysql username and password code example

Example 1: default password of mysql

mysqladmin -u root password NEWPASSWORD

Example 2: create user mysql

CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';

Example 3: mysql set password for user

# `SET PASSWORD FOR <user> = PASSWORD('<plaintext_password>')` is deprecated
SET PASSWORD FOR <user> = '<plaintext_password>';
FLUSH PRIVILEGES;

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

Example 6: what is default mysql database password in linux

$ sudo apt install mysql-server
$ sudo cat /etc/mysql/debian.cnf