create password root mysql code example
Example 1: change root password mysql
mysql> use mysql;
mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD("NewPassword");
mysql> flush privileges;
mysql> quit
mysql -u root -p
Example 2: mysql set root password
use mysql;
update user set authentication_string=PASSWORD("mynewpassword") where User='root';
flush privileges;
quit
Example 3: firt time root
Step 1: Open a Terminal Window.
Right-click the desktop, then left-click Open in terminal.
Alternately, you can click Menu > Applications > Accessories > Terminal.
Step 2: Change Your Root Password.
In the terminal window, type the following:
- sudo passwd root.