MySQL添加新用户、为用户创建数据库、为新用户分配权限
程序员文章站
2022-05-28 22:14:36
登录MySQL 添加新用户 允许本地 IP 访问 localhost, 127.0.0.1 允许外网 IP 访问 刷新授权 为用户创建数据库 为新用户分配权限 授予用户通过外网IP对于该数据库的全部权限 授予用户在本地服务器对该数据库的全部权限 刷新权限 退出 root 重新登录 用新帐号 test ......
转自:https://www.cnblogs.com/zmdComeOn/p/9647511.html
登录mysql
[root@vm_0_2_33_centos /]#mysql -u root -p
添加新用户
允许本地 ip 访问 localhost, 127.0.0.1
mysql>create user 'test'@'localhost' identified by '123456';
允许外网 ip 访问
mysql>create user 'test'@'%' identified by '123456';
刷新授权
mysql>flush privileges;
为用户创建数据库
mysql>create database test default charset utf8 collate utf8_general_ci;
为新用户分配权限 授予用户通过外网ip对于该数据库的全部权限
mysql>grant all privileges on `testdb`.* to 'test'@'%' identified by '123456';
授予用户在本地服务器对该数据库的全部权限
mysql>grant all privileges on `testdb`.* to 'test'@'localhost' identified by '123456';
刷新权限
mysql>flush privileges;
退出 root 重新登录
mysql> exit;
用新帐号 test 重新登录,由于使用的是 % 任意ip连接,所以需要指定外部访问ip
[root@vm_0_2_33_centos /]# mysql -u test -h 115.28.203.224 -p
在ubuntu服务器下,mysql默认是只允许本地登录,因此需要修改配置文件将地址绑定给注释掉:
# instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
#bind-address = 127.0.0.1
#注释掉这一行就可以远程登录了 不然会报如下错误:
error 2003 (hy000): can't connect to mysql server on 'host' (111)
上一篇: 老板今天问我为什么公司的数据库这么烂,我是这样回答的......
下一篇: 感觉上帝