Versions Compared

Key

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

...

The Squirro environment /wiki/spaces/KB/pages/25591902.

Validate Encryption

Only encoded passwords found in configuration files. 

Code Block
languagebash
titleValidate Encryption
$ cd /etc/squirro

# should return nothing
$ grep -rn . -e $PLAIN_PASSWORD

# should return all encoded passwords
$ grep -rn . -e 'CK_FERNET'
./cluster.ini:14:password = CK_FERNET::gAAAAABhQz8...
./datasource.ini:15:redis_password = CK_FERNET::gAAAAABhQz8wb2pcLWhZmao6zt9UeR...


Starting Squirro

To start Squirro after you have encrypted the configuration files, ensure that this environment variable are available for the daemons. You do this by adding them in to the following file: /etc/sysconfig/squirro.

...