Versions Compared

Key

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

...

RHEL6 / CentOS 6RHEL7 / CentOS 7


Code Block
languagebash
[root]# yum install wget
[root]# wget http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
[root]# yum localinstall epel-release-6-8.noarch.rpm



Code Block
languagebash
[root]# yum install wget
[root]# wget https://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-10.noarch.rpm
[root]# yum localinstall epel-release-7-10.noarch.rpm



Squirro Cluster node

Note

Starting with Squirro version 2.5.1, you can choose to run MySql server and Redis servers remotely, i.e. not residing on the Squirro Cluster Node if you go through the trouble of setting up MySql and Redis Server installations with a specific configuration.

To set up Squirro with remote MySql server and Redis server "Backends", please create a readable file /etc/squirro/backends.ini with the content:

Code Block
is_mysql_server_remote = true
is_redis_server_remote = true



Note
titleImportant step for RHEL7 / CentOS7

Support for RHEL7 is still experimental. The default MySQL variant for MySQL on RHEL7/CentOS7 is MariaDB. Our RPM packages are however not yet ready for this change.

Please execute the following workaround before you execute the next step:

Code Block
languagebash
echo "Installing Squirro dependency MariaDB"
yum install -y mariadb-server
yum install -y policycoreutils-devel
if [ -f /lib/systemd/system/mariadb.service ]; then
    systemctl stop mariadb
    mv /lib/systemd/system/{mariadb,mysqld}.service
    systemctl enable mysqld
    systemctl start mysqld
fi

Note that once we 've release have released offical support, this renaming of the mariadb MariaDb script will have to be undone.

...

Code Block
languagebash
service nginx reload


Note

If you have chosen to rely on remote MySql and/or Redis server installations, please follow the steps on Setup on Linux with Remote MySql and Redis Servers.

Finally start the Squirro Services

...