Mysql change user and password

reason

The database was hacked and the root user was removed

operate

Skip security verification

Add the following configuration in /etc/my.cnf

skip-grant-tables

Restart service

service mysql restart

Insert Root user

Insert the root user and initialize the password to 123456

INSERT INTO `mysql`.`user`(`Host`, `User`, `Select_priv`, `Insert_priv`, `Update_priv`, `Delete_priv`, `Create_priv`, `Drop_priv`, `Reload_priv`, `Shutdown_priv`, `Process_priv`, `File_priv`, `Grant_priv`, `References_priv`, `Index_priv`, `Alter_priv`, `Show_db_priv`, `Super_priv`, `Create_tmp_table_priv`, `Lock_tables_priv`, `Execute_priv`, `Repl_slave_priv`, `Repl_client_priv`, `Create_view_priv`, `Show_view_priv`, `Create_routine_priv`, `Alter_routine_priv`, `Create_user_priv`, `Event_priv`, `Trigger_priv`, `Create_tablespace_priv`, `ssl_type`, `ssl_cipher`, `x509_issuer`, `x509_subject`, `max_questions`, `max_updates`, `max_connections`, `max_user_connections`, `plugin`, `authentication_string`, `password_expired`, `password_last_changed`, `password_lifetime`, `account_locked`) VALUES ('%', 'root', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', '', '', '', '', 0, 0, 0, 0, 'mysql_native_password', '*6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9', 'N', '2022-01-16 07:26:04', NULL, 'N');

Change password (here, primarypassword is used as an example)

set password for root@'%' = password('primarypassword')

reempower

grant all privileges on *.* to root@'%' identified by 'primarypassword';

flush privileges;

Exit, skip verification, and restart the service

Open the /etc/my.cnf file and comment out the flush privileges configuration

flush privileges;

Log in

At this point, you can log in to mysql with the new password.

mysql -uroot -p

Guess you like

Origin blog.csdn.net/pp_lan/article/details/128817652