Bugzilla – Attachment 40903 Details for
Bug 12478
Elasticsearch support for Koha
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
My koha-conf.xml as an example
koha-conf.xml (text/plain), 7.17 KB, created by
Robin Sheat
on 2015-07-09 23:03:38 UTC
(
hide
)
Description:
My koha-conf.xml as an example
Filename:
MIME Type:
Creator:
Robin Sheat
Created:
2015-07-09 23:03:38 UTC
Size:
7.17 KB
patch
obsolete
> ><yazgfs> ><!-- [scheme:]host[:port][/databaseName] --> ><!-- scheme: tcp, ssl, unix, http, sru --> ><!-- can run all servers on tcp, but the unix socket is faster --> > ><listen id="biblioserver" >unix:/home/robin/koha-dev/var/run/zebradb/bibliosocket</listen> ><listen id="authorityserver" >unix:/home/robin/koha-dev/var/run/zebradb/authoritysocket</listen> ><!-- uncomment these lines and comment out the above if running on MSWin32 --> ><!-- ><listen id="biblioserver" >tcp:localhost:9998/bibliosocket</listen> ><listen id="authorityserver" >tcp:localhost:9999/authoritysocket</listen> >--> > ><!-- Uncomment the following entry if you want to run the public Z39.50 server. > Also uncomment the <server> and <serverinfo> sections for id 'publicserver' > under PUBLICSERVER'S BIBLIOGRAPHIC RECORDS title--> ><!-- ><listen id="publicserver" >tcp:@:9998</listen> >--> > ><!-- Settings for special biblio server instance for PazPar2. > Because PazPar2 only connects to a Z39.50 server using TCP/IP, > it cannot use the Unix-domain socket that biblioserver uses. > Therefore, a custom server is defined. --> ><!-- ><listen id="mergeserver">tcp:@:11001</listen> ><server id="mergeserver" listenref="mergeserver"> > <directory>/home/robin/koha-dev/var/lib/zebradb/biblios</directory> > <config>/home/robin/koha-dev/etc/zebradb/zebra-biblios-dom.cfg</config> > <cql2rpn>/home/robin/koha-dev/etc/zebradb/pqf.properties</cql2rpn> ></server> >--> > ><!-- BIBLIOGRAPHIC RECORDS --> ><server id="biblioserver" listenref="biblioserver"> > <directory>/home/robin/koha-dev/var/lib/zebradb/biblios</directory> > <config>/home/robin/koha-dev/etc/zebradb/zebra-biblios-dom.cfg</config> > <cql2rpn>/home/robin/koha-dev/etc/zebradb/pqf.properties</cql2rpn> > <xi:include href="/home/robin/koha-dev/etc/zebradb/retrieval-info-bib-dom.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/> > <xi:include href="/home/robin/koha-dev/etc/zebradb/explain-biblios.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/> ></server> ><serverinfo id="biblioserver"> > <ccl2rpn>/home/robin/koha-dev/etc/zebradb/ccl.properties</ccl2rpn> > <user>kohauser</user> > <password>zebrastripes</password> ></serverinfo> > ><!-- AUTHORITY RECORDS --> ><server id="authorityserver" listenref="authorityserver" > > <directory>/home/robin/koha-dev/var/lib/zebradb/authorities</directory> > <config>/home/robin/koha-dev/etc/zebradb/zebra-authorities-dom.cfg</config> > <cql2rpn>/home/robin/koha-dev/etc/zebradb/pqf.properties</cql2rpn> > <xi:include href="/home/robin/koha-dev/etc/zebradb/retrieval-info-auth-dom.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/> > <xi:include href="/home/robin/koha-dev/etc/zebradb/explain-authorities.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/> ></server> ><serverinfo id="authorityserver"> > <ccl2rpn>/home/robin/koha-dev/etc/zebradb/ccl.properties</ccl2rpn> > <user>kohauser</user> > <password>zebrastripes</password> ></serverinfo> > ><!-- PUBLICSERVER'S BIBLIOGRAPHIC RECORDS --> ><!-- ><server id="publicserver" listenref="publicserver"> > <directory>/home/robin/koha-dev/var/lib/zebradb/biblios</directory> > <config>/home/robin/koha-dev/etc/zebradb/zebra-biblios-dom.cfg</config> > <cql2rpn>/home/robin/koha-dev/etc/zebradb/pqf.properties</cql2rpn> > <xi:include href="/home/robin/koha-dev/etc/zebradb/retrieval-info-bib-dom.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/> > <xi:include href="/home/robin/koha-dev/etc/zebradb/explain-biblios.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/> ></server> ><serverinfo id="publicserver"> > <ccl2rpn>/home/robin/koha-dev/etc/zebradb/ccl.properties</ccl2rpn> > <user>kohauser</user> > <password>zebrastripes</password> ></serverinfo> >--> > ><!-- ADDITIONAL KOHA CONFIGURATION DIRECTIVE --> ><!-- db_scheme should follow the DBD driver name --> ><!-- the DBD drivers supported by Koha are mysql and Pg --> ><!-- port info: mysql:3306 Pg:5432 (5433 on Debian) --> ><config> > <db_scheme>mysql</db_scheme> > <database>koha_es</database> > <hostname>localhost</hostname> > <port>3306</port> > <user>kohauser</user> > <pass>reallysecret</pass> > <biblioserver>biblios</biblioserver> > <biblioservershadow>1</biblioservershadow> > <authorityserver>authorities</authorityserver> > <authorityservershadow>1</authorityservershadow> > <pluginsdir>/home/robin/koha-dev/var/lib/plugins</pluginsdir> > <enable_plugins>0</enable_plugins> > <intranetdir>/mnt/catalyst/koha</intranetdir> > <opacdir>/mnt/catalyst/koha/opac</opacdir> > <opachtdocs>/mnt/catalyst/koha/koha-tmpl/opac-tmpl</opachtdocs> > <intrahtdocs>/mnt/catalyst/koha/koha-tmpl/intranet-tmpl</intrahtdocs> > <includes>/mnt/catalyst/koha/koha-tmpl/intranet-tmpl/prog/en/includes/</includes> > <logdir>/home/robin/koha-dev/var/log</logdir> > <docdir>/home/robin/koha-dev/doc</docdir> > <backupdir>/home/robin/koha-dev/var/spool</backupdir> > <!-- Enable the two following to allow superlibrarians to download > database and configuration dumps (respectively) from the Export > tool --> > <backup_db_via_tools>0</backup_db_via_tools> > <backup_conf_via_tools>0</backup_conf_via_tools> > <!-- Uncomment the following line if you are not using packages and need to schedule reports through the web interface. supportdir should contain cronjobs/runreport.pl --> > <!-- > <supportdir>/mnt/catalyst/koha/misc</supportdir> > --> > <pazpar2url>http://koha:11002/search.pz2</pazpar2url> > <install_log>/home/robin/koha-dev/misc/koha-install-log</install_log> > <useldapserver>0</useldapserver><!-- see C4::Auth_with_ldap for extra configs you must add if you want to turn this on --> > <useshibboleth>0</useshibboleth><!-- see C4::Auth_with_shibboleth for extra configs you must do to turn this on --> > <zebra_bib_index_mode>dom</zebra_bib_index_mode> > <zebra_auth_index_mode>dom</zebra_auth_index_mode> > <zebra_lockdir>/home/robin/koha-dev/var/lock/zebradb</zebra_lockdir> > <use_zebra_facets>1</use_zebra_facets> > <queryparser_config>/home/robin/koha-dev/etc/searchengine/queryparser.yaml</queryparser_config> > <elasticsearch> > <server>koha-es:9200</server> > <index_name>koha_robin</index_name> > <timeout>10</timeout> > </elasticsearch> > > <!-- true type font mapping accoding to type from $font_types in C4/Creators/Lib.pm --> > <ttf> > <font type="TR" >/usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif.ttf</font> > <font type="TB" >/usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif-Bold.ttf</font> > <font type="TI" >/usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif-Italic.ttf</font> > <font type="TBI">/usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif-BoldItalic.ttf</font> > <font type="C" >/usr/share/fonts/truetype/ttf-dejavu/DejaVuSansMono.ttf</font> > <font type="CB" >/usr/share/fonts/truetype/ttf-dejavu/DejaVuSansMono-Bold.ttf</font> > <font type="CO" >/usr/share/fonts/truetype/ttf-dejavu/DejaVuSansMono-Oblique.ttf</font> > <font type="CBO">/usr/share/fonts/truetype/ttf-dejavu/DejaVuSansMono-BoldOblique.ttf</font> > <font type="H" >/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf</font> > <font type="HO" >/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-Oblique.ttf</font> > <font type="HB" >/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-Bold.ttf</font> > <font type="HBO">/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-BoldOblique.ttf</font> > </ttf> > ></config> ></yazgfs>
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 12478
:
29204
|
31128
|
31129
|
33136
|
33137
|
33138
|
33139
|
33140
|
33141
|
35654
| 40903 |
42030
|
42031
|
42032
|
42033
|
42062
|
42063
|
42064
|
42065
|
42066
|
42067
|
42068
|
42069
|
42392
|
42393
|
43127
|
43128
|
43129
|
43130
|
43131
|
43132
|
43133
|
43134
|
43140
|
43141
|
43142
|
43148
|
43345
|
43346
|
43347
|
43348
|
43349
|
43350
|
43351
|
43352
|
43373
|
47767
|
47768
|
50115
|
50159
|
50211
|
50212
|
50213
|
50214
|
50245
|
50246
|
50291
|
50292