Hi,
Sorry I'm very new to logstash and docker and currently looking at installing 8.4.3, as we are currently on 8.3.2.
Installing 8.3.3 - no issues
Installing 8.4.0 - the issues start
---> Running in 54f67362af15
Using bundled JDK: /usr/share/logstash/jdk
Unrecognized VM option 'UseConcMarkSweepGC'
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.
The dockerfile, where I specify the install of the plugins
RUN rm -f /usr/share/logstash/pipeline/logstash.conf /usr/share/logstash/config/logstash-sample.conf &&
/usr/share/logstash/bin/logstash-plugin install logstash-input-beats &&
/usr/share/logstash/bin/logstash-plugin install logstash-filter-prune &&
/usr/share/logstash/bin/logstash-plugin install logstash-output-opensearch &&
mkdir -p /usr/share/logstash/queue &&
chown -R logstash:root /usr/share/logstash/queue
Is anyone able to tell me what I'm missing, as I've commented out the RUN section and this builds fine. Just seems to be an issue with installing the different plugins.