How to create liberty as a service with ELM 7.0.2 on Linux environment
2 answers
First, create the unit file under /etc/systemd/service/clm.service
[Unit] Description = IBM CLM Server Documentation = IBM CLM Service [Service] ExecStart = /opt/IBM/JazzTeamServer/server/server.startup ExecStop = /opt/IBM/JazzTeamServer/server/server.shutdown Type=forking LimitNOFILE=65536 TimeoutStartSec=3min [Install] WantedBy = multi-user.target
Next, enable the service:
systemctl enable clm
Now you can start the service with
systemctl start clm
Shut it down with
systemctl stop clm
As far as I am aware, there are standard ways in Linux to configure applications as services that can be used. I am not the Linux expert but I found several hints using Google. One is this, I hope it helps: https://jazz.net/forum/questions/254856/can-you-configure-the-liberty-server-to-run-as-a-linux-service