MySQL数据库

MySql修改密码

2023-01-20  本文已影响0人  技术老男孩

为了数据库管理员root用户密码的安全,可以定期修改密码

一、登录数据库后修改

# root:数据库管理员账号
# NSD2022…a:数据库管理员账号的密码
[root@host50 ~]# mysql -uroot -pNSD2022…a

# 修改密码语句
# root为账号,identified by后面是新密码
Mysql> alter user root@”localhost” identified by "123qqq…A"; 

# 退出MySql环境
MySQL> exit;  

二、登录前修改:

[root@host50 ~]# mysqladmin -uroot -p123qqq…A password "NSD2022…a"
mysqladmin: [Warning] Using a password on the command line interface can be insecure.
Warning: Since password will be sent to server in plain text, 
use ssl connection to ensure password safety.
[root@host50 ~]# mysqladmin  -uroot  -p  password
Enter password:   
New password: 
Confirm new password: 
上一篇下一篇

猜你喜欢

热点阅读