Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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
Comment

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;
Comment

PREVIOUS NEXT
Code Example
Shell :: remove staged files git 
Shell :: how to make ubuntu faster 
Shell :: restart sql server ubuntu 
Shell :: f.lux for ubuntu 18.04 
Shell :: docker clean logs 
Shell :: bash create symlinks 
Shell :: get folder size linux 
Shell :: adonis list routes 
Shell :: usb sound card not working ubuntu 
Shell :: how to install modules from requirement.txt 
Shell :: git stash back 
Shell :: manjaro teamviewer 
Shell :: react native init 
Shell :: add git submodule 
Shell :: xcode print long string 
Shell :: Permission denied (publickey,gssapi-keyex,gssapi-with-mic). 
Shell :: cronjob run every hour 
Shell :: how to commit to github from terminal mac 
Shell :: git test ssh 
Shell :: linux virtual audio cable 
Shell :: "C:UsersMY PCAppDataRoaming pm/node_modules/node/bin/node: line 1: This: command not found" 
Shell :: linuxbrew 
Shell :: how to give all permission to a directory in linux 
Shell :: git log graph oneline 
Shell :: git push username password 
Shell :: ubuntu ifconfig not found 
Shell :: How to find sum of elements in array in bash script 
Shell :: npm clear cache 
Shell :: docker compose run 
Shell :: brave install ubuntu 
ADD CONTENT
Topic
Content
Source link
Name
6+8 =