Back to Starrocks

UNINSTALL PLUGIN

docs/en/sql-reference/sql-statements/cluster-management/plugin/UNINSTALL_PLUGIN.md

4.1.0488 B
Original Source

UNINSTALL PLUGIN

UNINSTALL PLUGIN is used to uninstall a plugin.

:::tip

This operation requires the SYSTEM-level PLUGIN privilege. You can follow the instructions in GRANT to grant this privilege.

:::

Syntax

SQL
UNINSTALL PLUGIN <plugin_name>

plugin_name can be viewed through SHOW PLUGINS command

Only non-builtin plugins can be uninstalled.

Examples

  1. Uninstall a plugin:

    SQL
    UNINSTALL PLUGIN auditdemo;