問題:OpenJDK 64-Bit Server VM warning: If the number of processors is expected to increase from one, then you should configure the number of parallel GC threads appropriately using -XX:ParallelGCThreads=N
報錯緣由:
某些軟件包啓動的時候默認啓用 -XX:+AssumeMP致使
解決辦法:
在jvm.optipons配置文件添加 -XX:-AssumeMP
操做以下(示例):
vim /usr/local/logstash-6.6.0/config/jvm.options -XX:-AssumeMP
解決後的效果圖: