Rechercher dans le manuel MySQL
13.7.6.25 SHOW PLUGINS Syntax
- SHOW PLUGINS
SHOW PLUGINS
displays information
about server plugins.
Example of SHOW PLUGINS
output:
- mysql> SHOW PLUGINS\G
- *************************** 1. row ***************************
- Name: binlog
- Status: ACTIVE
- Library: NULL
- License: GPL
- *************************** 2. row ***************************
- Name: CSV
- Status: ACTIVE
- Library: NULL
- License: GPL
- *************************** 3. row ***************************
- Name: MEMORY
- Status: ACTIVE
- Library: NULL
- License: GPL
- *************************** 4. row ***************************
- Name: MyISAM
- Status: ACTIVE
- Library: NULL
- License: GPL
- ...
SHOW PLUGINS
output has these
columns:
Name
The name used to refer to the plugin in statements such as
INSTALL PLUGIN
andUNINSTALL PLUGIN
.Status
The plugin status, one of
ACTIVE
,INACTIVE
,DISABLED
,DELETING
, orDELETED
.Type
The type of plugin, such as
STORAGE ENGINE
,INFORMATION_SCHEMA
, orAUTHENTICATION
.Library
The name of the plugin shared library file. This is the name used to refer to the plugin file in statements such as
INSTALL PLUGIN
andUNINSTALL PLUGIN
. This file is located in the directory named by theplugin_dir
system variable. If the library name isNULL
, the plugin is compiled in and cannot be uninstalled withUNINSTALL PLUGIN
.License
How the plugin is licensed (for example,
GPL
).
For plugins installed with INSTALL
PLUGIN
, the Name
and
Library
values are also registered in the
mysql.plugin
system table.
For information about plugin data structures that form the basis
of the information displayed by SHOW
PLUGINS
, see Section 29.2, “The MySQL Plugin API”.
Plugin information is also available from the
INFORMATION_SCHEMA
.PLUGINS
table. See
Section 25.18, “The INFORMATION_SCHEMA PLUGINS Table”.
Document created the 26/06/2006, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/mysql-rf-show-plugins.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.