You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we need to check our Solr Cloud manually if there are any issues with it or if it is down.
The above cases we have to restart them manually using a Jenkins job.
There is a better way to do it. We have to use a monitoring app that can check some critical parameters or if the servers are down and restart it.
We can investigate Monit to use for all the above.
Download and setup/configure Monit in test env's Solr server
Download and setup/configure Monit in staging env's Solr server
Download and setup/configure Monit in fallback env`s Solr server
Download and setup/configure Monit in public env's Solr server
The text was updated successfully, but these errors were encountered:
## Solr monitoring.## Test the solr service.
check process solr with pidfile /var/solr/solr-8983.pid
group solr
start program = "/usr/bin/systemctl start solr"
stop program = "/usr/bin/systemctl stop solr"
restart program = "/usr/bin/systemctl restart solr"if failed port 8983 then restart
if 3 restarts within 5 cycles then timeout
depends on solr_bin
depends on solr_init
alert root@localhost only on {timeout}
## Test the process binary.
check file solr_bin with path /opt/solr/bin/solr
group solr
if failed checksum then unmonitor
if failed permission 755 then unmonitor
if failed uid solr then unmonitor
if failed gid solr then unmonitor
alert root@localhost
## Test the init scripts.
check file solr_init with path /etc/init.d/solr
group solr
if failed checksum then unmonitor
if failed permission 744 then unmonitor
if failed uid root then unmonitor
if failed gid root then unmonitor
alert root@localhost
Currently we need to check our Solr Cloud manually if there are any issues with it or if it is down.
The above cases we have to restart them manually using a Jenkins job.
There is a better way to do it. We have to use a monitoring app that can check some critical parameters or if the servers are down and restart it.
We can investigate Monit to use for all the above.
test
env's Solr serverstaging
env's Solr serverfallback
env`s Solr serverpublic
env's Solr serverThe text was updated successfully, but these errors were encountered: