2022-02-10 20:22:20
浏览数 (1)
plugin pack
代码语言:javascript
复制[root@h102 ~]# /opt/logstash/bin/plugin pack -h
Usage:
bin/plugin pack [OPTIONS]
Options:
--tgz compress package as a tar.gz file (default: true)
--zip compress package as a zip file (default: false)
--[no-]clean clean up the generated dump of plugins (default: true)
--overwrite Overwrite a previously generated package file (default: false)
-h, --help print help
[root@h102 ~]# /opt/logstash/bin/plugin pack --tgz
Packaging plugins for offline usage
Generated at /opt/logstash/plugins_package.tar.gz
[root@h102 ~]# ll -h /opt/logstash/plugins_package.tar.gz
-rw-r--r-- 1 root root 52M Jan 8 16:26 /opt/logstash/plugins_package.tar.gz
[root@h102 ~]#
plugin unpack
代码语言:javascript
复制[root@h102 ~]# /opt/logstash/bin/plugin unpack -h
Usage:
bin/plugin unpack [OPTIONS] file
Parameters:
file the package file name
Options:
--tgz unpack a packaged tar.gz file (default: true)
--zip unpack a packaged zip file (default: false)
-h, --help print help
[root@h102 ~]# /opt/logstash/bin/plugin unpack --tgz /opt/logstash/plugins_package.tar.gz
Unpacking /opt/logstash/plugins_package.tar.gz
Unpacked at /opt/logstash/vendor/cache
The unpacked plugins can now be installed in local-only mode using bin/plugin install --local [plugin name]
[root@h102 ~]# echo $?
0
[root@h102 ~]#