ALTER USER 'user-name'@'localhost' IDENTIFIED BY 'NEW_USER_PASSWORD';FLUSH PRIVILEGES;
SET PASSWORD FOR 'user-name'@'localhost' = PASSWORD('NEW_USER_PASSWORD');FLUSH PRIVILEGES;
ALTER USER 'root'@'localhost' IDENTIFIED BY 'New-Password';
ALTER USER 'user-name'@'localhost' IDENTIFIED BY 'NEW_USER_PASSWORD';
FLUSH PRIVILEGES
ALTER USER 'user-name'@'localhost' IDENTIFIED BY 'NEW_USER_PASSWORD';
FLUSH PRIVILEGES;
# `SET PASSWORD FOR <user> = PASSWORD('<plaintext_password>')` is deprecated
SET PASSWORD FOR <user> = '<plaintext_password>';
FLUSH PRIVILEGES;
UPDATE mysql.user SET authentication_string=PASSWORD("rootpass") WHERE User='root';
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY '123';
UPDATE mysql.user SET authentication_string = PASSWORD('NEW_USER_PASSWORD')WHERE User = 'user-name' AND Host = 'localhost';FLUSH PRIVILEGES;CopyCopyCopied!
mysql -u root -pCopy
Code Example |
---|
Sql :: |
Sql :: |
:: oracle free up space in tablespace |
Sql :: psql execute sql file |
:: raiserror nowait sql server |
Sql :: postgres how to index a column |
Sql :: sql select rows with different values in one column |
Sql :: |
Sql :: AND OR NOT operators sql |
Sql :: oracle index size calculation |
Sql :: sql parent child tree query |
Sql :: |
Sql :: dump heroku database to sql |
:: |
:: |
:: object dependencies in oracle |
Sql :: |
:: mysql get date from datetime |
Sql :: sql convert datetime |
Sql :: limit offset sql server |
Sql :: postgres recursive function |
:: |
Sql :: delete rows from table sql |
Sql :: |
Sql :: oracle show parameter |
Sql :: How to import CSV file into a MySQL table |
Sql :: How to get last inserted primary key in SQL Server |
:: select all tables linked server sql |
Sql :: |
Sql :: truncate table sqlite |