MySQL 5.1 リファレンスマニュアル :: B Errors, Error Codes, and Common Problems :: B.1 Problems and Common Errors :: B.1.2 Common Errors When Using MySQL Programs :: B.1.2.14 Ignoring user
« B.1.2.13 Commands out of sync

B.1.2.15 Table 'tbl_name' doesn't exist »
Section Navigation      [Toggle]
  • B.1.2 Common Errors When Using MySQL Programs
  • B.1.2.1 Access denied
  • B.1.2.2 Can't connect to [local] MySQL server
  • B.1.2.3 Client does not support authentication protocol
  • B.1.2.4 Password Fails When Entered Interactively
  • B.1.2.5 Host 'host_name' is blocked
  • B.1.2.6 Too many connections
  • B.1.2.7 Out of memory
  • B.1.2.8 MySQL server has gone away
  • B.1.2.9 Packet too large
  • B.1.2.10 Communication Errors and Aborted Connections
  • B.1.2.11 The table is full
  • B.1.2.12 Can't create/write to file
  • B.1.2.13 Commands out of sync
  • B.1.2.14 Ignoring user
  • B.1.2.15 Table 'tbl_name' doesn't exist
  • B.1.2.16 Can't initialize character set
  • B.1.2.17 'File' Not Found and Similar Errors

B.1.2.14. Ignoring user

If you get the following error, it means that when mysqld was started or when it reloaded the grant tables, it found an account in the user table that had an invalid password.

Found wrong password for user 'some_user'@'some_host'; ignoring user

As a result, the account is simply ignored by the permission system.

The following list indicates possible causes of and fixes for this problem:

  • You may be running a new version of mysqld with an old user table. You can check this by executing mysqlshow mysql user to see whether the Password column is shorter than 16 characters. If so, you can correct this condition by running the scripts/add_long_password script.

  • The account has an old password (eight characters long) and you didn't start mysqld with the --old-protocol option. Update the account in the user table to have a new password or restart mysqld with the --old-protocol option.

  • You have specified a password in the user table without using the PASSWORD() function. Use mysql to update the account in the user table with a new password, making sure to use the PASSWORD() function:

    mysql> UPDATE user SET Password=PASSWORD('newpwd')
        -> WHERE User='some_user' AND Host='some_host';
    
Copyright © 1997, 2010, Oracle and/or its affiliates. All rights reserved. Legal Notices
Top / Previous / Next / Up / Table of Contents
© 2010, Oracle Corporation and/or its affiliates