0

我正在尝试通过 system.d 将 Sonatype Nexus 3 作为服务安装,但由于未设置 INSTALL4J_JAVA_HOME (或至少如此声明systemctl)而失败。我使用 SDKMan!( http://sdkman.io ) 来管理我的 Java 安装。我正在遵循https://help.sonatype.com/repomanager3/installation/run-as-a-service上的 Sonatype 说明。

run_as_user我可以毫无困难地以 bash shell 中指定的用户身份运行它。

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

4

1 回答 1

0

TL:博士;Environment要解决此问题,请在 system.d 服务文件中添加一个部分:

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

长篇答案:

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

[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

要解决此问题,您必须将 Environment 变量添加到 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
于 2021-05-11T21:27:08.630 回答