Skip to main content Skip to complementary content

Installing the Talend CommandLine service on systemd-based Linux systems

Before you begin

All the following commands must be executed with super-user privileges.

Procedure

  1. Create the service file with the following command:
    touch /etc/systemd/system/Talend-CommandLine.service
  2. Assign the relevant rights to the file you created:
    chmod 664 /etc/systemd/system/Talend-CommandLine.service
  3. Paste the following content in the file while adapting it to your configuration:
    [Unit]
    Description=Talend CommandLine Service
    After=network.target
    [Service]
    WorkingDirectory=<CommandLinePath>
    ExecStart=/bin/bash commandline-linux_x86_64.sh start
    Type=simple
    [Install]
    WantedBy=default.target
  4. Reload the service daemon:
    systemctl daemon-reload
  5. Start the service:
    systemctl start Talend-CommandLine.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!