Answers for "setup mysql user with password"

SQL
1

mysql config user password

-- Open the bash shell and connect to the server as root user:
mysql -u root -h localhost -p
-- Run ALERT mysql command:
ALTER USER 'userName'@'localhost' IDENTIFIED BY 'New-Password-Here';
FLUSH PRIVILEGES;
Posted by: Guest on December-27-2021

Code answers related to "setup mysql user with password"

Code answers related to "SQL"

Browse Popular Code Answers by Language