MySQL Unix Socket Protocol

mysql_unix_socket_protocol implements the MySQL UNIX socket protocol.

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=mysql_unix_socket_protocol

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.

--mysql-unix-socket-protocol.clobber
Default :
Variable :mysql_unix_socket_protocol_clobber

Clobber socket file if one is there already.

--mysql-unix-socket-protocol.max-connections ARG
Default :1000
Variable :mysql_unix_socket_protocol_max_connections

Maximum simultaneous connections.

--mysql-unix-socket-protocol.path ARG
Default :/tmp/mysql.socket
Variable :mysql_unix_socket_protocol_path

Path used for MySQL UNIX Socket Protocol.

Variables

These variables show the running configuration of the plugin. See variables for more information about querying and setting variables.

  • mysql_unix_socket_protocol_clobber

    Scope:Global
    Dynamic:No
    Option:

    Clobber socket file if one is there already.

Examples

Sorry, there are no examples for this plugin.

Authors

Brian Aker

Version

This documentation applies to mysql_unix_socket_protocol 0.3.

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

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

Changelog

v0.3

  • First Drizzle version.

Table Of Contents

Previous topic

MySQL Protocol

Next topic

Performance Dictionary

This Page