This guide explains how to configure the Falcon Sensor to run as a SystemD service using Docker in non-Kubernetes environments.
- Docker installed and running
- Root or sudo privileges
- A valid CrowdStrike Falcon Customer ID (CID)
- Access to the Falcon container image
The systemd_docker_installer.sh script simplifies installation and configuration:
-
Load or pull the Falcon Sensor image to your host:
docker pull myrepo.com/falcon/sensor:1234
-
Run the installer with your specific parameters:
systemd_docker_installer.sh --install \ --image myrepo.com/falcon/sensor:1234 \ --cid ABCDEFabcdef012345-12 \ --tags systemd,production
To uninstall later:
systemd_docker_installer.sh --uninstall-
Load or pull the Falcon Sensor image to your host:
docker pull myrepo.com/falcon/sensor:1234
-
Update the
falcon.confconfiguration file your settings. e.g.:FALCON_CONTAINER_IMAGE=myrepo.com/falcon/sensor:1234 FALCON_CID=ABCDEFabcdef012345-12 FALCON_TAGS=systemd,production -
Copy the
falcon.confandfalcon.servicefiles to/etc/systemd/system:cp falcon.* /etc/systemd/system -
Enable and start the Falcon service:
systemctl enable --now falcon.service