~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to docs/plugins/auth_all/index.rst

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20120619104649-e2l0ggd4oz3um0f4
Tags: upstream-7.1.36-stable
ImportĀ upstreamĀ versionĀ 7.1.36-stable

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.. _auth_all_plugin:
 
2
 
 
3
Allow All Authentication
 
4
========================
 
5
 
 
6
:program:`auth_all` is an authentication plugin that allows *all* connections
 
7
regardless of username or password, so it does not actually authenticate and
 
8
it does not provide any security.  This plugin is mostly used for testing.
 
9
 
 
10
.. seealso:: :doc:`/administration/authentication`
 
11
 
 
12
.. _auth_all_loading:
 
13
 
 
14
Loading
 
15
-------
 
16
 
 
17
This plugin is loaded by default, but it may need to be configured.  See
 
18
the plugin's :ref:`auth_all_configuration` and
 
19
:ref:`auth_all_variables`.
 
20
 
 
21
To stop the plugin from loading by default, start :program:`drizzled`
 
22
with::
 
23
 
 
24
   --plugin-remove=auth_all
 
25
 
 
26
.. seealso:: :ref:`drizzled_plugin_options` for more information about adding and removing plugins.
 
27
 
 
28
.. _auth_all_configuration:
 
29
 
 
30
Configuration
 
31
-------------
 
32
 
 
33
These command line options configure the plugin when :program:`drizzled`
 
34
is started.  See :ref:`command_line_options` for more information about specifying
 
35
command line options.
 
36
 
 
37
.. program:: drizzled
 
38
 
 
39
.. option:: --auth-all.allow_anonymous 
 
40
 
 
41
   :Default: false
 
42
   :Variable:
 
43
 
 
44
   Allow anonymous access.
 
45
 
 
46
.. _auth_all_variables:
 
47
 
 
48
Variables
 
49
---------
 
50
 
 
51
This plugin does not register any variables.
 
52
 
 
53
Authors
 
54
-------
 
55
 
 
56
Brian Aker
 
57
 
 
58
.. _auth_all_version:
 
59
 
 
60
Version
 
61
-------
 
62
 
 
63
This documentation applies to **auth_all 1.0**.
 
64
 
 
65
To see which version of the plugin a Drizzle server is running, execute:
 
66
 
 
67
.. code-block:: mysql
 
68
 
 
69
   SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='auth_all'
 
70
 
 
71
Changelog
 
72
---------
 
73
 
 
74
v1.0
 
75
^^^^
 
76
* First release.