Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ riak_http_port: 8098
riak_https_bind_ip: 0.0.0.0
riak_https_port: 10011

riak_solr_port: 8093
riak_solr_jmx_port: 8985

riak_ring_size: 64
riak_backend: bitcask
riak_control: 'off'
Expand Down
4 changes: 2 additions & 2 deletions templates/riak.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ search.solr.start_timeout = 30s
##
## Acceptable values:
## - an integer
search.solr.port = 8093
search.solr.port = {{ riak_solr_port }}

## The port number which Solr JMX binds to.
## NOTE: Binds on every interface.
Expand All @@ -598,7 +598,7 @@ search.solr.port = 8093
##
## Acceptable values:
## - an integer
search.solr.jmx_port = 8985
search.solr.jmx_port = {{ riak_solr_jmx_port }}

## The options to pass to the Solr JVM. Non-standard options,
## i.e. -XX, may not be portable across JVM implementations.
Expand Down