怎样连接其他电脑的MySQL数据库

2017-04-20

1、***\bin\>MySQL -h localhost -u root
  这样应该可以进入MySQL服务器
  执行代码如下:
    MySQL>update user set host = ‘%‘ where user = ‘root‘;
    MySQL>select host, user from user;

2、MySQL>FLUSH PRIVILEGES
  修改生效

3、MySQL>EXIT

时间: 2024-10-21 15:31:53

怎样连接其他电脑的MySQL数据库的相关文章

在一台电脑访问另一台电脑的mysql数据库

1.      假设192.168.1.3为服务器 2.      首先在ip为192.168.1.103的机子上能够ping 通 运行->cmd >ping  192.168.1.3 检查是否能ping通 3.      把两台电脑的IP设置在同一个网段, 如:192.168.1.2 ,192.168.1.3.....子网:255.255.255.0 网关:192.168.1.1 4.      在mysql服务器上增加新用户, 增加新用户的方法: 在服务器端 Mysql> grant

android数据库编程:连接服务器上的MySQL数据库详细示例

1 public class DatabaseDemo extends Activity { 2 private TextView textView; 3 4 @Override 5 protected void onCreate(Bundle savedInstanceState) { 6 // TODO Auto-generated method stub 7 super.onCreate(savedInstanceState); 8 setContentView(R.layout.acti

本地电脑通过Navicat连接阿里云的Mysql数据库

第一步:需要设置mysql的监听地址 查看mysql的监听地址: netstat -nao 如果3306(mysql默认端口)前面是0.0.0.0,则表示端口监听没有问题,如果是127.0.0.1,则需要修改. 修改方式:打开/etc/mysql/my.cnf文件 在文件中加入如下代码: [mysqld] bind-address=0.0.0.0 重启mysql: service mysql restart 第二步:mysql数据库中的user的表权限: 1 mysql -u root -p;

ssh远程连接linux下的MySQL数据库字符集和防止乱码

实验环境: 本地windows 8.1 远程连接工具 SecureCRT 7.3 Linux发行版本 CentOS 6.7 x86_64位Linux系统,内核的版本为2.6.32-573 mysql版本 mysql-5.5.32 1.1 MySQL数据库字符集介绍 字符集就是一套文字符号及编码.比较规则的集合 MySQL数据库字符集包括字符集(CHARACTER)和校对规则(COLLATION)两个概念.其中,字符集是用来定义MySQL数据字符串的存储方式,而校对规则是定义比较字符串的方式. 1

远程连接阿里云的mysql数据库

第一步 由于mysql版本问题 先尝试打开 sudo vim /etc/mysql/my.cnf 如空,再尝试打开 sudo vim /etc/mysql/mysql.conf.d/mysqld.cnf # 号 注释该行 bind-address = 127.0.0.1 第二步 进入mysql mysql -uroot -p 授权 grant all privileges on *.* to [email protected]"%" identified by "root密码

Linux 命令之 Navicat 连接 Linux 下的Mysql数据库

2016年12月7日18:44:06 -====------------------------ GRANT ALL PRIVILEGES ON *.* TO 'itoffice'@'%' IDENTIFIED BY 'itoffice' WITH GRANT OPTION;(第一个itoffice表示用户名,%表示所有的电脑都可以连接,也可以设置某个ip地址运行连接,第二个itoffice表示密码).这段指令容许所有用root用户输入密码登陆该mysql server,如果将'%' 换乘'19

使用PHP连接SAE中的MySql数据库

//既然使用到web开发,必须要连接数据库,php不像java还需要jar包,这点不错,直接上代码,复制粘贴就能用,注意下面的数据库名称和字段就ok了! <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gbk" /> </head> <body> <table border="1"&

解决远程连接不到linux mysql数据库问题

mysql -uroot -proot GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION; /sbin/iptables -I INPUT -p tcp --dport 3306 -j ACCEPT

连接MySQL数据库得到错误&ldquo;Unable to find the requested .Net Framework Data Provider&rdquo;

  Registering DbProviderFactories Each .NET Framework data provider that supports a factory-based class registers configuration information in the DbProviderFactories section of the machine.config file on the local computer. The following configurati