xampp集成环境,数据库更新和修改

1)修改数据库密码

#mysql -u root -p

#use mysql
#grant all on *.* to 'root'@'%' IDENTIFIED BY 'dfwx@2019' ; #标红位置为需要设置的密码
#flush privileges;

2)删除mysql数据库user表里面的密码记录条数(只保留上面最新加的一条),如下:

#use mysql

#delete from user where host='127.0.0.1' and host='localhost'  and  host='::1 ';

# select user,host ,Password,authentication_string from user; ;

 

3)更新密码(注意user表里面存密码是password字段还是authentication_string

#use mysql

#update user set authentication_string=password('dfwx@2021') where User='root';

#flush privileges;

4)重启数据库

#/opt/lampp/lampp restart

 

5)登陆数据库的方法:

# mysql -u root -pdfwx@2019

 

posted @ 2021-03-15 16:41  syy714363310  阅读(198)  评论(0编辑  收藏  举报