Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Several methods of modifying password by Mysql in centos7

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

Modify the password

Root changes his own password

Method 1:

Mysqladmin-uroot-pinch 123' password' new_password' / / 123 is the old password

Method 2:

In Mysql

Update mysql.user set authentication_string=password ('Qianfeng123') Where user='root' and host='localhost'

Method 3:

Set the password to which user, and under which user do you want to execute?

Set password=password ("new_password'')

The above method will be in a later version of remove, using the following method

SET PASSWORD='new_password'; sets the password directly

Root changes the passwords of other users

Method 1:

Mysql > SET PASSWORD FOR user3@'localhost'=password ('new_password')

The above method will remove in the future, using the following method:

Mysql > SET PASSWORD FOR user3@'localhost'='new_password'

Method 2:

UPDATE mysql.user SET authentication_string=password ('new_password') WHERE user='user3' AND host='localhost'

Ordinary users change their passwords

Mysql > SET password=password ('new_password'); mysql > select * from mysql.user\ Gmysql > alter user' wing'@'localhost' identified by 'Qianfeng123 thanks

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report