Running Kapacitor Installed Using an RPM Package
Method 1: Start Kapacitor as a service.
- Start the Kapacitor service.
1systemctl start kapacitor
If you modify the kapacitor.conf file when the Kapacitor service is running, you may fail to start Kapacitor by running the systemctl command. In this case, you can run the service reload command to reload the service and then restart the Kapacitor service.
- Check the service status.
1systemctl status kapacitor

- (Optional) Stop the service.
1systemctl stop kapacitor

Method 2: Run commands to start Kapacitor.
- Start the Kapacitord service.
1kapacitord
Or
1nohup kapacitord &

- Execute the Kapacitor command line tool.
1 2
kapacitor kapacitor -h
Parent topic: Running Kapacitor