MySQL的用戶賬戶管理
阿新 • • 發佈:2018-09-04
退出 init.d warn sta 去掉 cte -a ins 權限
1、開啟MySQL遠程連接
1、sudo -i
2、cd /etc/mysql/mysql.conf.d/
3、vim mysqld.cnf
#bind-address = 127.0.0.1
把前面#去掉,保存退出。
4、/etc/init.d/mysql restart
2、添加授權用戶
1、用root用戶登錄mysql
mysql -uroot -p123456
2、授權
grant 權限列表 on 庫.表 to "用戶名"@"%"
identified by "密碼" with grant option;
權限列表:all privileges 、select 、insert
庫.表 : *.* 所有庫的所有表
3、示例
mysql> grant all privileges on zengsf.* to "zengsf"@"%" identified by "123" with grant option;
Query OK, 0 rows affected, 1 warning (0.11 sec)
MySQL的用戶賬戶管理