mysql 打开远程服务

进mysqlserver

例如下列:

Enter password: ******

Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id is 810

Server version: 5.6.10 MySQL Community Server (GPL)

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

mysql>

敲入例如以下命令:

GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ IDENTIFIED BY ‘123456‘ WITH GRANT OPTION;

FLUSH   PRIVILEGES;

版权声明:本文博主原创文章,博客,未经同意不得转载。

时间: 2024-10-27 10:34:33

mysql 打开远程服务的相关文章

mysql 打开远程连接

1.在控制台执行 mysql -u root -p mysql,系统提示输入数据库root用户的密码,输入完成后即进入mysql控制台,这个命令的第一个mysql是执行命令,第二个mysql是系统数据名称,不一样的. 2.在mysql控制台执行 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'MyPassword' WITH GRANT OPTION; 3.在mysql控制台执行命令中的 ‘root'@'%' 可以这样理解: ro

mysql打开general log的办法

mysql打开general log的办法 mysql打开general log之后,所有的查询语句都可以在general log 文件中以可读的方式得到,但是这样general log文件会非常大,所以默认 都是关闭的.有的时候为了查错等原因,还是需要暂时打开general log的. www.2cto.com [email protected](none)>show global variables like "%genera%"; +------------------+-

Navicat for MySQL打开链接时出错错误为:2005 - Unknown MySQL server host 'localhost'(0)?

问题:Navicat for MySQL打开链接时出错错误为:2005 - Unknown MySQL server host 'localhost'(0)? 在使用navicat 连接mysql数据库的时候会出现:mysql error 2005 - Unknown MySQL server host 'localhost'(0)错误:当检查连接信息,连接属性信息,用户名和密码都是正确的,IP地址为:localhost,在有网络的情况下都能正常打开数据库,但是一断网就出错了. 解决方案如下:在

MySql打开局域网及广域网端口

首先下载并安装MySQL... 配置好了以后,默认是只能从localhost连接的.如果需要局域网连接(基于192.168或者10.10或者172.16等局域网网段),需要做以下操作: 首先,登录mysql主机的命令行,输入以下命令: 1.use mysql; 2.update user set host = '%' where user = 'root'; 3.flush privileges; 这样就能打开局域网连接了. 广域网上也类似,增加配置端口和防火墙而已.

Mysql开启远程服务

开启远程服务: 登录mysql: //赋予root用户所有权限,远程登录密码是123456 grant all privileges on *.* to 'root' @'%' identified by '123456'; flush privileges; 设置Linux的防火墙: Linux防火墙默认拦截3306端口 /sbin/iptables -I INPUT -p tcp --dport 3306 -j ACCEPT /etc/rc.d/init.d/iptables save 原文

mysql 开启远程服务

进入mysqlserver 如下: Enter password: ****** Welcome to the MySQL monitor.  Commands end with ; or \g. Your MySQL connection id is 810 Server version: 5.6.10 MySQL Community Server (GPL) Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights

mysql打开报错2013解决办法

修改mysql配置文件 在[mysqld]下面设置skip-name-resolve 重启mysql from :https://www.jb51.net/article/52637.htm 原文地址:https://www.cnblogs.com/yuancr/p/9353016.html

Mysql打开日志的方法

直接运行一下代码就可以: log-error=log-error.log log=log.log log-bin=log-bin.log log-queries-not-using-indexes=log-queries-not-using-indexes.log log-warnings=1 log-slow-queries=log-slow-query.log log-update=log-update.log long_query_time=1

mysql 打开方式

原文地址:https://blog.51cto.com/14437184/2432769