Thanks a lot! I'm testing with ES 5.0.0-alpha2. But something weird is still happening, I still cannot see Kibana.
I launch ES, apparently with no problems (I see its answer at http://localhost:9200, which seems correct:
{
"name" : "Solarr",
"cluster_name" : "jgbarah",
"version" : {
"number" : "5.0.0-alpha2",
"build_hash" : "e3126df",
"build_date" : "2016-04-26T12:08:58.960Z",
"build_snapshot" : false,
"lucene_version" : "6.0.0"
},
"tagline" : "You Know, for Search"
}
The ES log seems ok too:
[2016-05-26 09:56:35,514][INFO ][node ] [Solarr] version[5.0.0-alpha2], pid[13139], build[e3126df/2016-04-26T12:08:58.960Z]
[2016-05-26 09:56:35,515][INFO ][node ] [Solarr] initializing ...
[2016-05-26 09:56:36,517][INFO ][plugins ] [Solarr] modules [lang-mustache, lang-painless, ingest-grok, reindex, lang-expression, lang-groovy], plugins []
[2016-05-26 09:56:36,605][INFO ][env ] [Solarr] using [1] data paths, mounts [[/ (/dev/mapper/expisito--vg-root)]], net usable_space [24.7gb], net total_space [460.8gb], spins? [no], types [ext4]
[2016-05-26 09:56:36,605][INFO ][env ] [Solarr] heap size [990.7mb], compressed ordinary object pointers [true]
[2016-05-26 09:56:41,029][INFO ][node ] [Solarr] initialized
[2016-05-26 09:56:41,030][INFO ][node ] [Solarr] starting ...
[2016-05-26 09:56:41,201][INFO ][transport ] [Solarr] publish_address {127.0.0.1:9300}, bound_addresses {[::1]:9300}, {127.0.0.1:9300}
[2016-05-26 09:56:41,215][WARN ][bootstrap ] [Solarr] bootstrap checks failed
[2016-05-26 09:56:41,215][WARN ][bootstrap ] [Solarr] initial heap size [268435456] not equal to maximum heap size [1073741824]; this can cause resize pauses and prevents mlockall from locking the entire heap
[2016-05-26 09:56:41,215][WARN ][bootstrap ] [Solarr] please set [discovery.zen.minimum_master_nodes] to a majority of the number of master eligible nodes in your cluster.
[2016-05-26 09:56:41,216][WARN ][bootstrap ] [Solarr] max virtual memory areas vm.max_map_count [65530] likely too low, increase to at least [262144]
[2016-05-26 09:56:44,379][INFO ][cluster.service ] [Solarr] new_master {Solarr}{tud1eKejTae7r9NzH4EE3w}{127.0.0.1}{127.0.0.1:9300}, reason: zen-disco-join(elected_as_master, [0] joins received)
[2016-05-26 09:56:44,402][INFO ][http ] [Solarr] publish_address {127.0.0.1:9200}, bound_addresses {[::1]:9200}, {127.0.0.1:9200}
[2016-05-26 09:56:44,402][INFO ][node ] [Solarr] started
[2016-05-26 09:56:44,435][INFO ][gateway ] [Solarr] recovered [0] indices into cluster_state
Then I launch Kibana from the git repo (master HEAD) with npm start. I load http://localhost:5603 in the browser, get redirected to https://localhost:5603/xed/app/kibana and then it shows:
{"statusCode":404,"error":"Not Found"}
Just for checking, I also tried https://localhost:5603/app/kibana and there I get a message stating "Kibana did not load properly. Check the server output for more information." (white font on red background).
The Kibana log seems ok [I'm including it in another message, since it seems I'm over the number of allowed lines for a reply]
Any idea? Or I better open a new thread (since this has nothing to do with the subject now), or open an issue in GitHub?