如何通过SDKMan使用system.d服务

How to use system.d service with SDKMan

我正在尝试通过 system.d 将 Sonatype Nexus 3 安装为服务,但由于未设置 INSTALL4J_JAVA_HOME 而失败(或者至少,声称 systemctl 如此)。我用SDKMan! (http://sdkman.io) to manage my Java installation. I am following the Sonatype directions at https://help.sonatype.com/repomanager3/installation/run-as-a-service .

我可以 运行 作为 run_as_user 中指定的用户在 bash shell 中毫无困难。

如何让 SDKman 提供的 java home 环境变量对 system.d 可见?

TL:DR;要解决,请将 Environment 部分添加到 system.d 服务文件:

[Service]
Environment="INSTALL4J_JAVA_HOME=/home/nexus/.sdkman/candidates/java/current/"

长格式答案:

在撰写本文时,Sonatype 文档说使用以下文件作为您的 /etc/systemd/system/nexus.service 文件,如果您通过系统分发将 java 安装到您的服务用户(确保您的发行版的 java 主页由系统管理)。这无法解决我的问题:

[Unit]
Description=nexus service
After=network.target

[Service]
Type=forking
LimitNOFILE=65536
ExecStart=/opt/nexus/bin/nexus start
ExecStop=/opt/nexus/bin/nexus stop
User=nexus
Restart=on-abort
TimeoutSec=600

[Install]
WantedBy=multi-user.target

要解决,您必须将环境变量添加到 system.d 服务文件(your_user 替换为您是 运行 nexus 的用户,并且 /opt/nexus 被您的 nexus 安装位置替换):

[Unit]
Description=nexus service
After=network.target

[Service]
Environment="INSTALL4J_JAVA_HOME=/home/your_user/.sdkman/candidates/java/current/"
Type=forking
LimitNOFILE=65536
ExecStart=/opt/nexus/bin/nexus start
ExecStop=/opt/nexus/bin/nexus stop
User=your_user
Restart=on-abort
TimeoutSec=600

[Install]
WantedBy=multi-user.target