Before you begin
In the following procedure, TALEND-CONTAINER
is the name of the
service and is only given as an example. Note also that
<TalendRuntimePath>
is the Talend Runtime installation directory.
All the following commands have to be executed with super-user privileges.
Procedure
-
Create the service file with the following command:
touch
/etc/systemd/system/Talend-Container.service
-
Assign the relevant rights to the file you created:
chmod 664
/etc/systemd/system/Talend-Container.service
-
Paste the following content in the file while adapting it to your
configuration:
[Unit]
Description=Talend Runtime Service
After=network.target
[Service]
ExecStart=<TalendRuntimePath>/bin/trun
Type=simple
[Install]
WantedBy=default.target
-
Reload the service daemon:
systemctl
daemon-reload
-
Start the service:
systemctl start
Talend-Container.service