How to pass the PATH variable to Bamboo when running it as a systemd service in RedHat Enterprise Linux 7
プラットフォームについて: Server および Data Center のみ。この記事は、Server および Data Center プラットフォームのアトラシアン製品にのみ適用されます。
サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。
*Fisheye および Crucible は除く
問題
When running Bamboo as a systemd service in RedHat Enterprise Linux (RHEL) 7 the PATH variable will not be automatically inherited by the Bamboo process.
This happens due to an OS restriction since systemd will not pass the PATH variable available for that user to any process started from it unless you explicitly pass the variable.
ソリューション
Add and environment directive to your service passing the PATH values you want:
1. Edit the systemd configuration file for Bamboo
vi /usr/lib/systemd/system/bamboo.service
2. Add the following environment directive:
Environment=PATH=/opt/location_of_your_executable
3. Reload Daemon
systemctl daemon-reload
4. Restart Bamboo
systemctl stop bamboo; systemctl start bamboo