Files
doris/docs/en/sql-reference/sql-statements/Administration/INSTALL PLUGIN.md
2020-05-09 19:19:38 +08:00

1.5 KiB

title, language
title language
INSTALL PLUGIN en

INSTALL PLUGIN

description

To install a plugin

Syntax

    INSTALL PLUGIN FROM [source]
    
    source supports 3 kinds:
    
    1. Point to a zip file with absolute path.
    2. Point to a plugin dir with absolute path.
    3. Point to a http/https download link of zip file.

example

1. Intall a plugin with a local zip file:

    INSTALL PLUGIN FROM "/home/users/doris/auditdemo.zip";

2. Intall a plugin with a local dir:

    INSTALL PLUGIN FROM "/home/users/doris/auditdemo/";

2. Download and install a plugin:

    INSTALL PLUGIN FROM "http://mywebsite.com/plugin.zip";

keyword

INSTALL,PLUGIN