MySQL添加新用户、为用户创建数据库、为新用户分配权限
登录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)
作者:子钦加油
出处:https://www.cnblogs.com/zmdComeOn/
个性签名:努力生活,努力走路
阿里云拼团:https://www.aliyun.com/1111/home?userCode=f4ee1llo1核2G1M,86一年,229三年;2核4G5M,799三年;2核8G5M,1399三年
腾讯云三月采购计划特价:https://cloud.tencent.com/act/cps/redirect?redirect=1073&cps_key=15d0b1673287c43fe946626d9f4e2eee&from=console1核2G1M,88一年;1核2G1M,268三年;2核4G5M,998一年;4核8G5M,2888元三年
出处:https://www.cnblogs.com/zmdComeOn/
个性签名:努力生活,努力走路
阿里云拼团:https://www.aliyun.com/1111/home?userCode=f4ee1llo1核2G1M,86一年,229三年;2核4G5M,799三年;2核8G5M,1399三年
腾讯云三月采购计划特价:https://cloud.tencent.com/act/cps/redirect?redirect=1073&cps_key=15d0b1673287c43fe946626d9f4e2eee&from=console1核2G1M,88一年;1核2G1M,268三年;2核4G5M,998一年;4核8G5M,2888元三年