[Koha-bugs] [Bug 12478] Elasticsearch support for Koha

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Jul 10 08:23:33 CEST 2015


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12478

--- Comment #65 from Juan Romay Sieira <juan.sieira at xercode.es> ---
Yes, its the right koha-conf, and Koha gets the right configuration. Now I
change it to put the timeout tag and . I put a warn in
Koha/SearchEngine/Elasticsearch/Search.pm

    warn Data::Dumper::Dumper(\%$params);
    $self->store(
        Catmandu::Store::ElasticSearch->new(
            %$params, trace_calls => 1,
        )
    ) unless $self->store;

this is what it show in koha opac log

$VAR1 = {
           'index_name' => 'core_biblios',
           'timeout' => '10',
           'servers' => [
                          '192.168.0.213:9200'
                        ]
         };

The ES instance is running too, if I visit the URL of ES in a browser it
returns:
{
  "status" : 200,
  "name" : "koha-es",
  "cluster_name" : "koha-cluster",
  "version" : {
    "number" : "1.6.0",
    "build_hash" : "cdd3ac4dde4f69524ec0a14de3828cb95bbb86d0",
    "build_timestamp" : "2015-06-09T13:36:34Z",
    "build_snapshot" : false,
    "lucene_version" : "4.10.4"
  },
  "tagline" : "You Know, for Search"
}

To temporaly fix it I wrote a iptables rule to forward my 9200 port to the
other machine...

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list