Jazz Forum Welcome to the Jazz Community Forum Connect and collaborate with IBM Engineering experts and users

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.

0 votes



2 answers

Permanent link

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

1 vote


Permanent link

 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

0 votes

Your answer

Register or log in 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.

Search context
Follow this question

By Email: 

Once you sign in you will be able to subscribe for any updates here.

By RSS:

Answers
Answers and Comments
Question details
× 7,495
× 2,357
× 1,325

Question asked: Oct 29 '21, 2:31 a.m.

Question was seen: 1,677 times

Last updated: Feb 28 '23, 2:20 a.m.

Confirmation Cancel Confirm