It's all about the answers!

Ask a question

How to create liberty as a service with ELM 7.0.2 on Linux environment


Venkatesh Bhat (293) | asked Oct 29 '21, 2:31 a.m.

 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



permanent link
Bartosz Chrabski (3.4k22949) | answered Oct 29 '21, 3:21 a.m.

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

permanent link
Ralph Schoon (63.3k33646) | 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


Register or to post 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.