son30 发表于 2018-10-10 12:40:17

mysql 报错 Ignoring query to other database

  mysql 查询数据库报错
  # mysql -root -p
  Enter password:
  Welcome to the MySQL monitor.Commands end with ; or \g.

  Your MySQL connection>  Server version: 5.6.25-log MySQL Community Server (GPL)
  Copyright (c) 2000, 2015, 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> show databases;
  Ignoring query to other database
  也尝试了其他的命令 同样的结果 如下
  mysql> show processlist;
  Ignoring query to other database
  重新对比命令时发现,登陆操作 少输入了 -u参数 ,重新登陆加上 -u
  # mysql -uroot-p
  Enter password:
  Welcome to the MySQL monitor.Commands end with ; or \g.

  Your MySQL connection>  Server version: 5.6.25-log MySQL Community Server (GPL)
  Copyright (c) 2000, 2015, 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> show databases;
  +--------------------+
  | Database         |
  +--------------------+
  | information_schema |
  | gearman            |
  | mysql            |
  | performance_schema |
  | adson            |
  +--------------------+
  5 rows in set (0.00 sec)
  mysql>

页: [1]
查看完整版本: mysql 报错 Ignoring query to other database