tar -xvf lenses-hq-6.0.0-la.1-linux-amd64.tar.gz -C lenses-hq
Inside the extract archive, you will find.
terminal
lenses-hq
├── lenses-hq
Configuring the HQ
In order to properly configure HQ, one core components is necessary as prerequirement:
1
Configure Authentication
To set up authentication, there are multiple methods available.
You can choose between:
password-based authentication, which requires users to provide a username and password;
and SAML/SSO (Single Sign-On) authentication, which allows users to authenticate through an external identity provider for a seamless and secure login experience.
Both password based and SAML / SSO authentication methods can be used alongside each other.
First to cover is users property.
Users Property: The users property is defined as an array, where each entry includes a username and a password. The passwords are hashed using bcrypt for security purposes, ensuring that they are stored securely.
Second to cover will be administrators. It serves as definition of user emails which will have highest level of permissionsupon authentication to HQ.
Another part which has to be set in order to successfully run HQ is the http definition. As previously mentioned, this parameter defines everything around HTTP endpoint of the HQ itself and how users will interact with.
Username (and password) which has access to created database;
In order to successfully run HQ, storage within config.yaml has to be defined first.
Definition of storage object is as follows:
config.yaml
database:
host: postgres:5432
username: panoptes
password: password
database: panoptes
schema: insert-schema-here
# Params example - not required and it depends on your PG requirements
params:
sslmode: require
Full database configuration spec can be found here.
5
Configure license and accept EULA
In demo purposes and testing the product you can use our community license
If you have meticulously followed all the outlined steps, your config.yaml file should mirror the example provided below, fully configured and ready for deployment. This ensures your system is set up correctly with all necessary settings for authentication, database connection, and other configurations optimally defined.
If you do not pass the location of the config file, the HQ will look for it inside the current (runtime) directory. If it does not exist, it will try its installation directory.
If your server uses systemd as a Service Manager, then manage the Agent (start upon system boot, stop, restart). Below is a simple unit file that starts the Agent automatically on system boot.