Skip to main content Skip to complementary content
Close announcements banner

Installing and uninstalling Remote Engine service (System V)

Talend Remote Engine is based on Apache Karaf. Karaf Service Wrapper makes it possible to install the Remote Engine as a Linux service.

Procedure

  1. Stop the engine if it is running.
    If your engine is running tasks, you can follow this procedure to gracefully shut down Talend Remote Engine.
  2. Open a terminal instance.
  3. Browse to the bin folder of the Talend Remote Engine installation directory and run the following command to create OS service wrapper files for the talend-remote-engine service.
    ./shell wrapper:install -n talend-remote-engine
    The following files are created in the <RemoteEngineInstallationDirectory>/bin folder:
    • talend-remote-engine-wrapper
    • talend-remote-engine-service
    • talend-remote-engine.service

    The talend-remote-engine-wrapper.conf file is created in the <RemoteEngineInstallationDirectory>/etc folder. In this wrapper configuration file, you can customize the JVM properties for the engine service.

  4. Browse to the bin folder of the Remote Engine installation directory, then run the following commands to install the talend-remote-engine service:
    • For Ubuntu/Debian:
      ln -s <RemoteEngineInstallationDirectory>/bin/Talend-Remote-Engine-service /etc/init.d/
      update-rc.d Talend-Remote-Engine-service defaults
    • For CentOS/Red Hat/Fedora:
      ln -s  <RemoteEngineInstallationDirectory>/bin/Talend-Remote-Engine-service /etc/init.d/
      chkconfig Talend-Remote-Engine-service --add
  5. When you need to uninstall the service, do the following:
    1. Stop the engine if it is running.
    2. Run the following command to uninstall the talend-remote-engine service:
        • For Ubuntu/Debian:
          rm /etc/init.d/Talend-Remote-Engine-service
        • For CentOS/Red Hat/Fedora:
          chkconfig Talend-Remote-Engine-service --del
          rm /etc/init.d/Talend-Remote-Engine-service 

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!