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”.
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 26/06/2006 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/mysql-rf-show-plugins.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.