0%

jar包运行时指定环境变量及systemd服务

jar包运行时指定环境变量及systemd服务


使用 jar 包时指定环境变量 profile

1
2
3
4
5
# Java System Properties (VM Arguments)
java -jar -Dspring.profiles.active=prod ruoyi-admin/target/ruoyi-admin.jar

# Program arguments
java -jar application.jar --spring.profiles.active=prod --spring.config.location=c:\config
使用mvn启动spring
1
mvn spring-boot:run -Dspring-boot.run.profiles=local,foo,bar

创建 systemd 服务

1
2
3
4
5
6
7
8
yum install -y jre nginx telnet
vim /usr/lib/systemd/system/news.service

systemctl daemon-reload
# 开机启动
systemctl enable news
# 启动服务
systemctl start news
1
2
3
4
5
6
7
8
9
10
11
12
[Unit]
Description=news
After=network.target syslog.target
[Service]
PrivateTmp=true
Restart=always
Type=simple
WorkingDirectory=/data/news
ExecStart=/usr/bin/java -jar app.jar --spring.profiles.active=prod -Xms128m -Xmx256m
ExecStop=/usr/bin/kill -15  $MAINPID
[Install]
WantedBy=multi-user.target
查看 news 服务日志
1
journalctl -u news -f