IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Custom URL or file system
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Custom URL or file system
editA plugin can also be downloaded directly from a custom location by specifying the URL:
For instance, to install a plugin from your local file system, you could run:
sudo bin/plugin install file:///path/to/plugin.zip
The plugin script will refuse to talk to an HTTPS URL with an untrusted certificate. To use a self-signed HTTPS cert, you will need to add the CA cert to a local Java truststore and pass the location to the script as follows:
sudo bin/plugin -Djavax.net.ssl.trustStore=/path/to/trustStore.jks install https://....