Matthias Kneer

Results 24 comments of Matthias Kneer

I have the same issue using angular 1.6.4. @ridespirals would you mind to post an example of you workaround?

@ridespirals Great - thank you for the fast reply. The errors are gone now! But unfortunately there was one tiny typo which was causing all the trouble. It seems the...

Sorry - my post was a bit missleading. I already found the typo and everything is now working as expected.

Thank you. Yes, we are using it on our production system. No issues so far.

@dElogics The ipv6nat solution won't work due to this limitation: > Only networks with driver bridge are supported; this includes Docker's default network ("bridge"), as well as user-defined bridge networks...

Looks like `/elasticsearch` is not accesible for the user `elasticsearch`. What about chaging your chown? ``` - RUN chown elasticsearch:elasticsearch /elasticsearch/config/elasticsearch.keystore + RUN chown -R elasticsearch:elasticsearch /elasticsearch ``` Additionally: Have...

@psalaberria002 @zhujinhe There are multiple ways to achieve this. ### 1. Delocate all shards before proceeding with the next one with `preStart` and `postStop` lifecycle hooks. Here's my - slightly...

@maryxu Could you run a `kubectl logs po/efk3-elasticsearch-2 --namespace=efk --insecure-skip-tls-verify=true` and check the PODs logs to see if there are issues with the process within the container itself? It would...

It looks like a permission issue ``` Caused by: java.nio.file.AccessDeniedException: /usr/share/elasticsearch/data/nodes/0/node.lock at sun.nio.fs.UnixException.translateToIOException(UnixException.java:84) ~[?:?] at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:102) ~[?:?] at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:107) ~[?:?] at sun.nio.fs.UnixFileSystemProvider.newFileChannel(UnixFileSystemProvider.java:177) ~[?:?] at java.nio.channels.FileChannel.open(FileChannel.java:287) ~[?:1.8.0_161] at java.nio.channels.FileChannel.open(FileChannel.java:335) ~[?:1.8.0_161] at...

> For the other applications, the container can write to the NFS data without no problem. What are the other applications? Do you have multiple APPs running in the same...