Allow All Authentication

auth_all is an authentication plugin that allows all connections regardless of username or password, so it does not actually authenticate and it does not provide any security. This plugin is mostly used for testing.

See also

Authentication

Loading

This plugin is loaded by default, but it may need to be configured. See the plugin’s Configuration and Variables.

To stop the plugin from loading by default, start drizzled with:

--plugin-remove=auth_all

See also

Plugin Options for more information about adding and removing plugins.

Configuration

These command line options configure the plugin when drizzled is started. See Command Line Options for more information about specifying command line options.

--auth-all.allow_anonymous
Default:false
Variable:

Allow anonymous access.

Variables

This plugin does not register any variables.

Authors

Brian Aker

Version

This documentation applies to auth_all 1.0.

To see which version of the plugin a Drizzle server is running, execute:

SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='auth_all'

Changelog

v1.0

  • First release.

Table Of Contents

Previous topic

ASCII Function

Next topic

File-based Authentication

This Page