~clint-fewbar/drizzle/regex-policy-cache-limiter

« back to all changes in this revision

Viewing changes to docs/clients/drizzle.rst

  • Committer: Clint Byrum
  • Date: 2012-03-15 18:05:43 UTC
  • mfrom: (2224.1.302 workspace)
  • Revision ID: clint@ubuntu.com-20120315180543-9jxxm4q10k3np2ws
merging with latest trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Drizzle Commandline Client
2
 
==========================
3
 
 
4
 
The :program:`drizzle` command line client is the primary program for
 
1
 
 
2
.. _drizzle_command_line_client:
 
3
 
 
4
drizzle Command Line Client
 
5
===========================
 
6
 
 
7
The :program:`drizzle` command line client is the primary program for ad-hoc
5
8
connecting to and manipulating a Drizzle database.
 
9
 
 
10
Errors
 
11
------
 
12
 
 
13
Various errors can occur when trying to use the Drizzle command line clients,
 
14
this is a list of some of these and how to deal with them:
 
15
 
 
16
.. _old-passwords-label:
 
17
 
 
18
Old Password
 
19
^^^^^^^^^^^^
 
20
 
 
21
``drizzle_state_handshake_result_read:old insecure authentication mechanism not supported``
 
22
 
 
23
This error happens because the Drizzle client is trying to connect to a MySQL
 
24
server which has the password stored in the Old Password (or pre-MySQL-4.1)
 
25
format.  This is typically seen when connecting to a stock RedHat or CentOS
 
26
MySQL installation.
 
27
 
 
28
To resolve this, look for the old-passwords option in your MySQL configuration
 
29
and disable it.  Then update the password for the user you are trying to connect
 
30
with using the ``SET PASSWORD`` syntax so that it can be re-recorded in the
 
31
newer password format.