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