MySQL出现Ignoring query to other database的问题

今天使用mysql的时候,输入任意一条命令都会出:

Ignoring query to other database

这条错误信息,很是奇怪。后来才发现是登录数据库时,少了个-u的参数。。

正确的命令是:

mysql -uroot -p

我输入的是:

mysql -root -p

加上-u就可以了

MySQL出现Ignoring query to other database的问题

时间: 2024-11-07 09:40:20

MySQL出现Ignoring query to other database的问题的相关文章

Mysql错误:Ignoring query to other database解决方法

今天登陆mysql show databases出现Ignoring query to other database错误,又试了几个命令和sql全部提示Ignoring query to other database错误 错误如下: D:\Program Files\MySQL\MySQL Server 5.6\bin>mysql -rootWelcome to the MySQL monitor.  Commands end with ; or \g.Your MySQL connection

mysql Ignoring query to other database

mysql 碰到了Ignoring query to other database问题: [email protected] ~]# mysql -root -p --socket=/tmp/mysql.sock Enter password:  Welcome to the MySQL monitor.  Commands end with ; or \g. Your MySQL connection id is 5 Server version: 5.6.22-log Source dist

mariadb报Ignoring query to other database解决方法

问题描述,今天登陆mariadb时,发现任何sql语句不能执行,报以下错误 MariaDB [(none)]> show databases; Ignoring query to other database MariaDB [(none)]> show tables; Ignoring query to other database MariaDB [(none)]> select database(); Ignoring query to other database 折腾了好长时间

MySQL报错:Ignoring query to other database的解决办法

原因是在登陆数据库的时候,缺少了-u参数 错误截图:修正截图: 原文地址:http://blog.51cto.com/13587182/2074003

com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown database 'user'

1.错误描述 2014-7-12 21:06:05 com.mchange.v2.c3p0.impl.AbstractPoolBackedDataSource getPoolManager 信息: Initializing c3p0 pool... com.mchange.v2.c3p0.ComboPooledDataSource [ acquireIncrement -> 3, acquireRetryAttempts -> 30, acquireRetryDelay -> 1000,

MySQL存盘阻塞“Lost connection to MySQL server during query”

公测以来的两次全服维护,都遇到了个别服务器停服时间异常长的情况,具体表现为停服流程阻塞在MySQL存盘,待存储数据一直不减少,持续大概一个小时到两个小时之后继续存储,成功停服,并SQLError报错“Lost connection to MySQL server during query”. 这两天同事查询一些资料大致弄清了问题原因,我们服务器停服瞬间会像MySQL发送大量数据进行存储,数据量过大触发了MySQL的net_read_timeout超时,MySQL报错断开连接,而服务器这边无法直接

mysqldump导出报错"mysqldump: Error 2013: Lost connection to MySQL server during query when dumping table `file_storage` at row: 29"

今天mysql备份的crontab自动运行的时候,出现了报警,报警内容如下 mysqldump: Error 2013: Lost connection to MySQL server during query when dumping table `file_storage` at row: 29 mysqldump: Couldn't execute 'show table status like 'property'': MySQL server has gone away (2006)

Error NO.2013 Lost connection to Mysql server during query

系统:[[email protected] ~]# cat /etc/redhat-release CentOS release 6.3 (Final) DB版本:mysql> select @@version;+------------+| @@version  |+------------+| 5.6.26-log |+------------+ 数据中心部门申请线上数据库select权限,直接grant  select on DB.* to 'username'@'IP' identifi

mysql中slow query log慢日志查询分析

在mysql中slow query log是一个非常重要的功能,我们可以开启mysql的slow query log功能,这样就可以分析每条sql执行的状态与性能从而进行优化了. 一.慢查询日志 配置 开启慢查询日志 , 配置样例: /etc/mysql/my.cnf[mysqld]log-slow-queries 在 my.cnf 配置文件中增加上述配置项并重启 mysql 服务,这时 mysql 慢查询功能生效.慢查询 日志将写入参数 DATADIR (数据目录:/var/lib/mysql