# mysql -u root -p
然后输入密码
2.使用mysql
数据库
use mysql
3.添加一个用户
test
并授权通过本地机(localhost)访问,密码"password"。
grant all privileges on *.* to test@localhost identified by 'password' with grant option
4.
刷新刚才的内容*
flush privileges
5.查看用户
select host,user from mysql.user
使用命令:select
host,user,password
from
mysql.user
来查看用户。
想要了解更多关于Linux的资讯和文章请关注《linux就该这么学》。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)