Run Jira Server or Data Center as a systemd service on linux
プラットフォームについて: Server および Data Center のみ。この記事は、Server および Data Center プラットフォームのアトラシアン製品にのみ適用されます。
サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。
*Fisheye および Crucible は除く
Linux/Solaris のシステム管理は、アトラシアンのサポート対象外です。本ページはあくまで情報提供のみを目的としています。
目的
This article explains how to install Jira as a systemd service in Linux.
前提条件
Jira is installed and working but does not automatically start on boot. For example, Jira is installed via the .zip package rather than the .bin installer, or you have migrated JIRA to a different server.
ソリューション
- Login to the Jira application server as the root user.
Create the following systemd unit file for the JIRA service as root:
touch /lib/systemd/system/jira.service chmod 664 /lib/systemd/system/jira.service
Edit the systemd unit file as root:
vi /lib/systemd/system/jira.service
Add the following content into the systemd unit file to define the JIRA service:
[Unit] Description=Atlassian Jira After=network.target [Service] Type=forking User=jira LimitNOFILE=20000 PIDFile=/opt/atlassian/jira/work/catalina.pid ExecStart=/opt/atlassian/jira/bin/start-jira.sh ExecStop=/opt/atlassian/jira/bin/stop-jira.sh [Install] WantedBy=multi-user.target
The above defined 'jira' user would be the user that is used to run JIRA, change this if you are running JIRA under a different user.
'/opt/atlassian/jira' would be the default Jira installation path, change this if your Jira installation path is different.
Do not run Jira in the foreground, as this will prevent the file 'catalina.out' from being created.
Note: When running SELinux in enforcing mode it may be necessary to pass the start/stop of Jira to the bash shell, like such:
ExecStart=/bin/bash /opt/atlassian/jira/bin/start-jira.sh ExecStop=/bin/bash /opt/atlassian/jira/bin/stop-jira.sh
Enable the service and start it:
systemctl daemon-reload systemctl enable jira.service systemctl start jira.service systemctl status jira.service
In some instances, you may see the following error message when attempting to enable the Jira service:
systemctl enable jira.service Synchronizing state of jira.service with SysV service script with /lib/systemd/systemd-sysv-install. Executing: /lib/systemd/systemd-sysv-install enable jira update-rc.d: error: jira Default-Start contains no runlevels, aborting.
This may be due to a previously created Jira service file. To resolve this, users may perform the following depending on their environment:
If the file exists, backup up the previous Jira service file and then remove it before enabling the new Jira service file:
cp /etc/init.d/jira /opt/atlassian/jira-init.d.bak && rm /etc/init.d/jira sudo systemctl enable jira.service Created symlink /etc/systemd/system/multi-user.target.wants/jira.service → /lib/systemd/system/jira.service.
Furthermore, we recommend either disabling SELinux policies or thoroughly validating them.