是root用户的话,IP就是<localhost>或<127.0.0.1>,只是代表使用本机,不是代表本机IP地址, *** 作方法如下:
1、首先,利用Navicat创建一个数据库和表,数据库名为testdb,表为userinfo,并添加一条新记录。
2、用如下的数据库连接字符串访问数据库时,是没有问题的。Driver = MySQL ODBC 5.1 DriverServer = localhostPort=3306DATABASE = testdbuser = rootpassword = 123456。
3、其中,Server是数据库所在主机IP地址,Prot是连接端口;user和password则为连接数据库的用户名和密码,使用Select * from userinfo 可以正确获取到数据。
4、但是当把localhost换成实际的IP地址的时候,就报错了,说明这个数据库testdb是默认没开启访问权限的,默认情况下只允许localhost和127.0.0.1访问。
5、更新root账户的权限。打开mysql命令行窗口,输入grant all privileges on *.* to root@"%" identified by 'abc' with grant option flush privileges。
6、创建一个新账户,如guest,并将可被访问的主机定义为%,即所有主机都可访问该账户。测试,没有问题。
可以。MySQL是一个关系型数据库管理系统,由瑞典MySQL AB公司开发,属于Oracle旗下产品。mysql不启动可以本机连接。不启动服务与本机mysql无冲突。MySQL是最流行的关系型数据库管理系统之一。本地不安装mysql 服务器是可以的,但是至少要安装客户端, 也要安装一个 ODBC 的驱动。
下面这种情况, 是 连接本机的 MySQL
前提是 本机安装了 MySQL , 并开启了 MySQL 的服务。
E:\MySQL\MySQL Server 5.1\bin>mysql -u root -p
Enter password: ********
Welcome to the MySQL monitor. Commands end with or \g.
Your MySQL connection id is 4
Server version: 5.1.50-community MySQL Community Server (GPL)
Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL v2 license
Type 'help' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
下面这种情况, 是 本机只有客户端, 没有运行服务程序。
连接的是 另外一台机器上面的 MYSQL 数据库, 本机是没有数据库的。
F:\mysql-4.1.10a-win32\bin>mysql -u test_user -h 192.168.56.101 -p
Enter password: ************
Welcome to the MySQL monitor. Commands end with or \g.
Your MySQL connection id is 8 to server version: 5.0.96-community-nt
Type 'help' or '\h' for help. Type '\c' to clear the buffer.
mysql>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)