欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

Linux下为MySQL配置添加新用户

程序员文章站 2022-03-28 09:17:13
...

在Linux下构建web应用时,需要远程访问MySQL数据库。我们不推荐在Linux下使用root来登录,而是添加新用户。1)以root用户登录#mysql -u root

在Linux下构建web应用时,需要远程访问MySQL数据库。

我们不推荐在Linux下使用root来登录,,而是添加新用户。

1)以root用户登录
#mysql -u root -p

2)插入新用户,host:%;user:jason;pssword:jason
mysql>insert into mysql.user (host,user,password) values('%','jason',PASSWORD('jason'));

3)更新密码
mysql>update user set password=password('jason') where user='jason'

4)授予权限
mysql>grant all on neuzjs.* to jason@'%' identified by 'jason';
其中neuzjs为数据库名;

5)刷新权限
mysql>flush previleges;

Linux下为MySQL配置添加新用户