How to create liberty as a service with ELM 7.0.2 on Linux environment
We need configure ELM (7.0.2) with Liberty as application server and Db2 as database at customer location. I wanted to know how to configure Liberty as a service in Redhat linux enterprise edition. |
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
|
Ralph Schoon (63.5k●3●36●46)
| answered Oct 29 '21, 2:50 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER 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 |
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.