Error
Error Code: 1721

MySQL Error 1721: Plugin Not Dynamically Installable

📦 MySQL
📋

Description

This error occurs when MySQL attempts to load a plugin dynamically (while the server is running), but the plugin's configuration explicitly prevents dynamic installation. It signifies that the plugin requires a full server restart to be properly installed or activated.
💬

Error Message

Plugin '%s' is marked as not dynamically installable. You have to stop the server to install it.
🔍

Known Causes

3 known causes
⚠️
Attempting Dynamic Plugin Load
You tried to install or enable a plugin using `INSTALL PLUGIN` or `LOAD PLUGIN` while the MySQL server was running, but the plugin's definition does not support dynamic loading.
⚠️
Plugin Configuration Requires Restart
The specific plugin you are attempting to install is inherently designed to only be installed during MySQL server startup, often due to its nature or dependencies.
⚠️
Incorrect Installation Procedure
The method used to install the plugin did not align with the plugin's requirements, specifically by attempting a dynamic load where a server restart is mandatory.
🛠️

Solutions

Coming Soon

Detailed step-by-step solutions for this error are being prepared. In the meantime, try these general troubleshooting tips:

General Troubleshooting Tips

  • Check the error message carefully for specific details
  • Review recent changes that might have caused the error
  • Search for the exact error code in the official documentation
  • Check log files for additional context
  • Try restarting the application or service
🔗

Related Errors

5 related errors