INSTALL PLUGIN

description

  1. To install a plugin
  2. Syntax
  3. INSTALL PLUGIN FROM [source]
  4. source supports 3 kinds:
  5. 1. Point to a zip file with absolute path.
  6. 2. Point to a plugin dir with absolute path.
  7. 3. Point to a http/https download link of zip file.
  8. PROPERTIES supports setting some configurations of the plugin, such as setting the md5sum value of the zip file.

example

  1. 1. Intall a plugin with a local zip file:
  2. INSTALL PLUGIN FROM "/home/users/doris/auditdemo.zip";
  3. 2. Intall a plugin with a local dir:
  4. INSTALL PLUGIN FROM "/home/users/doris/auditdemo/";
  5. 3. Download and install a plugin:
  6. INSTALL PLUGIN FROM "http://mywebsite.com/plugin.zip";
  7. 4. Download and install a plugin, and set the md5sum value of the zip file:
  8. INSTALL PLUGIN FROM "http://mywebsite.com/plugin.zip" PROPERTIES("md5sum" = "73877f6029216f4314d712086a146570");

keyword

  1. INSTALL,PLUGIN