仅列出标题 列出摘要
2013年5月28日

MySql实现远程连接

摘要: 1、进入mysql,创建一个新用户root,密码为root: 格式:grant 权限 on 数据库名.表名 to 用户@登录主机 identified by "用户密码"; grant select,update,insert,delete on *.* to root@192.168.1.12 identified by "root"; 原先数据表结构mysql> use mysql;Database changedmysql> select host,user,password from user;+-----------+------+ 阅读全文
posted @ 2013-05-28 10:19 baoyiluo 阅读(233) 评论(1) 推荐(0) 编辑