Skip to main content Skip to complementary content

Installing Talend LogServer as a service on systemd-based Linux systems

Availability-noteDeprecated

Before you begin

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

About this task

Information noteDeprecation: Talend LogServer is deprecated from Talend 8.0 onwards.

Procedure

  1. Create the service file with the following command:
    touch /etc/systemd/system/Talend-LogServer.service
  2. Assign the relevant rights to the file you created:
    chmod 664 /etc/systemd/system/Talend-LogServer.service
  3. Paste the following content in the file while adapting it to your configuration:
    [Unit]
    Description=Talend Log Server Service
    After=network.target
    
    [Service]
    WorkingDirectory=<LogServerPath>
    ExecStart=/bin/bash start_logserver.sh
    ExecStop=/bin/bash stop_logserver.sh
    Type=forking
    
    [Install]
    WantedBy=default.target
  4. Reload the service daemon:
    systemctl daemon-reload
  5. Start the service:
    systemctl start Talend-LogServer.service

Results

Filebeat is automatically installed and started as a service, only if you selected the option to use LogServer when installing a Talend module that provides this option, such as Talend Administration Center or Talend Data Stewardship.

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 – please let us know!