Elastic search (1.6) doesn't start from windows7 with jdk1.7.0_71

I'm new to looking for elasticity and when I start it you will get the warning below. can anyone help here ... what needs to be changed.

[2015-06-25 13:04:15,143][WARN ][bootstrap                ] jvm uses the client vm, make sure to run `java` with the server vm for best performance by adding `-server` to the command line
    [2015-06-25 13:04:15,244][INFO ][node                     ] [Kubik] version[1.6.0], pid[20068], build[cdd3ac4/2015-06-09T13:36:34Z]
    [2015-06-25 13:04:15,244][INFO ][node                     ] [Kubik] initializing ...
    [2015-06-25 13:04:15,247][INFO ][plugins                  ] [Kubik] loaded [], sites []
    [2015-06-25 13:04:15,277][INFO ][env                      ] [Kubik] using [1] data paths, mounts [[System (C:)]], net usable_space [109.3gb], net total_space [238.1gb], types [NTFS]
    [2015-06-25 13:04:18,034][INFO ][node                     ] [Kubik] initialized
    [2015-06-25 13:04:18,034][INFO ][node                     ] [Kubik] starting ...
    [2015-06-25 13:04:18,317][INFO ][transport                ] [Kubik] bound_address {inet[/0:0:0:0:0:0:0:0:9300]}, publish_address {inet[/10.154.249.29:9300]}
    [2015-06-25 13:04:18,669][INFO ][discovery                ] [Kubik] elasticsearch/ZWZR28dARWqqEf8FOn0Hgw
    [2015-06-25 13:04:18,688][WARN ][transport.netty          ] [Kubik] exception caught on transport layer [[id: 0xdfa8e460]], closing connection
    java.net.SocketException: Permission denied: no further information
        at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
        at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:739)
        at org.elasticsearch.common.netty.channel.socket.nio.NioClientBoss.connect(NioClientBoss.java:152)
        at org.elasticsearch.common.netty.channel.socket.nio.NioClientBoss.processSelectedKeys(NioClientBoss.java:105)
        at org.elasticsearch.common.netty.channel.socket.nio.NioClientBoss.process(NioClientBoss.java:79)
        at org.elasticsearch.common.netty.channel.socket.nio.AbstractNioSelector.run(AbstractNioSelector.java:337)
        at org.elasticsearch.common.netty.channel.socket.nio.NioClientBoss.run(NioClientBoss.java:42)
        at org.elasticsearch.common.netty.util.ThreadRenamingRunnable.run(ThreadRenamingRunnable.java:108)
        at org.elasticsearch.common.netty.util.internal.DeadLockProofWorker$1.run(DeadLockProofWorker.java:42)
        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
        at java.lang.Thread.run(Thread.java:745)

      

+3


source to share


1 answer


Solved my problem .... put this as an answer so that it is helpful to others.



go to the installed ElasticSearch setting and go to the "config" folder and then the "elasticsearch.yml" file and add / change the network.host property from "127.0.0.1".

+7


source







All Articles