Deploying Reactive Agents

Installing Reactive Agents

LogSail Reactive Agents are compiled for many UNIX flavors. These agents configure themselves with our APIs using our protocol, Perspicacity.

Installing the Agent

Install Repo File

sudo yum install -y yum-utils
sudo yum-config-manager \
    --add-repo \
    https://repo.logsail.com/linux/centos/logsail-ra.repo

Install Agent

sudo yum install lsagent

Setting Token File

Create and copy a new agent token from the LogSail console and write the token to the token file.

echo -n '<AGENT TOKEN>' > /etc/lsagentd/token.rt

Start and Enable Reactive Agent for Linux

On Linux, reactive agents are managed by the systemd utility.

sudo systemctl enable lsagent && systemctl start lsagent

Start and Enable Reactive Agent for OpenBSD

On OpenBSD, reactive agents are managed by the rc utility.

rcctl start lsagentd && rcctl enable lsagentd

Last updated