Horje
ubuntu default phpmyadmin password Code Example
ubuntu default phpmyadmin password
sudo mysql --user=root mysql
//Once logged in, you will see the mysql> prompt.

UPDATE mysql.user SET authentication_string=null WHERE User='root';

flush privileges;

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'your_password_here';

flush privileges;


exit
phpmyadmin default password
-- DEFAULT: Username:root , Password: –  (none)
mysql> SET PASSWORD FOR root@localhost=PASSWORD('mypassword');
mysql> GRANT ALL PRIVILEGES ON *.* TO root@localhost 
	IDENTIFIED BY 'mypassword' WITH GRANT OPTION;




Shell

Related
change lunix password Code Example change lunix password Code Example
create necxt app Code Example create necxt app Code Example
how to get the folder size in linux Code Example how to get the folder size in linux Code Example
where skype saves file in linux Code Example where skype saves file in linux Code Example
firebase env file Code Example firebase env file Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13