Logstash 6.6.2 java execution | AIX

Hello Team,

We have setup a ELK cluster in RHEL based machine but we have some apps running in AIX machine where I am trying to setup logstash 6.6.2 to monitor those.

But when i try to bring up logstash it starts and crash with this below error,

[ERROR][org.logstash.Logstash ] java.lang.IllegalStateException: Logstash stopped processing because of an error: (NotImplementedError) block device detection unsupported or native support failed to load; see http://wiki.jruby.org/Native-Libraries

Java version : 1.8

And my conf file is very simple one

input {
  file {
    path => "/tmp/test.log"
    mode => "tail"
  }
}

output {
  elasticsearch {
    hosts => "elastic-host.intra"
    user => "elastic"
    password => "changeme"
    ssl => false
    index => "testindex"
  }
}

As per the support matrix AIX is not a supported platform and IBM Java is not a supported JVM.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.