Skip to main content

Celonis Product Documentation

Uninstalling on-prem clients on Linux

When uninstalling Celonis on-prem clients (OPC), we recommend that you use the same method you used for the installation process. For instance, if you installed on-prem clients using the OPC Management Tool, use the same tool to uninstall them.

  1. Open On-prem Client Management Tool.

  2. In the Automation Agent tab, click Stop to stop this service, and then click Uninstall.

  3. In the SAP Extractor tab, click Stop to stop this service, and then click Uninstall.

  4. Manually delete files from the installation folder path.

  1. In your command line, run:

    systemctl list-units --type=service --all | grep celonis
  2. Locate the on-prem clients service which should look in the following way:

    celonis-automation-agent-fc19167b-7e07-4e8c-b9c1-4bc0d647d000.service loaded    active   running Celonis on premise agent to execute automation type of tasks. This agent belongs to dk-test-EC2 package.
  3. Uninstall the service. Run:

    sudo systemctl stop celonis-automation-agent-<PACKAGE-ID-HERE>.service
    sudo systemctl disable celonis-automation-agent-<PACKAGE-ID-HERE>.service
    sudo rm /etc/systemd/system/celonis-automation-agent-<PACKAGE-ID-HERE>.service
    sudo systemctl daemon-reload