You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Workaround as of now to make it logstash start:
Comment out the block in setup.bat in bin folder.
rem do not let JAVA_TOOL_OPTIONS slip in (as the JVM does by default)
if not "%JAVA_TOOL_OPTIONS%" == "" (
echo "warning: ignoring JAVA_TOOL_OPTIONS=$JAVA_TOOL_OPTIONS"
set JAVA_TOOL_OPTIONS=
)
and add just set the env variable to empty. As below.
rem do not let JAVA_TOOL_OPTIONS slip in (as the JVM does by default)
rem if not "%JAVA_TOOL_OPTIONS%" == "" (
rem echo "warning: ignoring JAVA_TOOL_OPTIONS=$JAVA_TOOL_OPTIONS"
rem set JAVA_TOOL_OPTIONS=
rem )
set JAVA_TOOL_OPTIONS=
The text was updated successfully, but these errors were encountered:
Running into this same issue right now, the issue linked fixes it for elasticsearch but can I get confirmation that the fix is present in Logstash codebase as well?
This issue is similar to 26261.
Workaround as of now to make it logstash start:
Comment out the block in setup.bat in bin folder.
and add just set the env variable to empty. As below.
The text was updated successfully, but these errors were encountered: