Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Finally start the Squirro Services using the squirro_start command. 

RHEL7 / Centos 7 And RHEL8/Centos8


echo "Starting Squirro services" cd /lib/systemd/system for service in $(ls sq*d.service); do echo "Starting $service" systemctl restart $service done
Code Block
languagebash
squirro_restart


Please note that this command will not start the cluster service by default. If you want to start the cluster service also, please follow the second systemctl command.


Code Block
languagebash
systemctl start sqclusterd 


Multi-node cluster setup

There are some additional steps that need to be performed when you wish to run Squirro across multiple nodes, as some orchestration between cluster members is needed. 

...