bitscn.com
mysql远程连数据之经验总结
[sql]
1. 新增用户
[sql]
mysql>insert into mysql.user(host,user,password) values(localhost,lionbule,password(hello1234));
mysql>flush privileges;
2. 修改用户密码 www.bitscn.com
[sql]
mysql>update mysql.user set password=password('new password') where user=lionbule and host=localhost;
mysql>flush privileges;
3. 删除用户
[sql]
mysql>delete from user where user=lionbule and host=localhost;
mysql>flush privileges;
4. 权限分配
4.1. grant用法
grant 权限 on 数据库.* to 用户名@'登录主机' identified by '密码'
[sql]
权限:
常用总结, all/alter/create/drop/select/update/delete
数据库:
*.* 表示所有库的所有表
test.* 表示test库的所有表
test.test_table 表示test库的test_table表
用户名:
mysql账户名
登陆主机: www.bitscn.com
允许登陆mysql server的客户端ip
'%'表示所有ip
'localhost' 表示本机
'192.168.10.2' 特定ip
密码:
账户对应的登陆密码
举例如下:
[sql]
mysql>grant all on test.* to lionbule@'%' identified by 'hello1234';
mysql>flush privileges;
bitscn.com