文章目录
前言
CT容器运行SpringCloud工程
一、创建jar包启动脚本
创建一个脚本文件,例如 /usr/local/bin/startGateway.sh。
sudo nano /usr/local/bin/startGateway.sh
二、在脚本中添加以下内容
#!/bin/bash
# Path to the JAR file
JAR_PATH="/root/bztc-gateway/bztc-gateway8888-1.0.1-SNAPSHOT.jar"
# Run the Java application
/usr/local/java/bin/java -jar -Dfile.encoding=UTF-8 -Xms128m -Xmx256m "$JAR_PATH"
三、赋予脚本执行权限
sudo chmod +x /usr/local/bin/startGateway.sh
四、创建 Systemd 服务单元文件
sudo nano /etc/systemd/system/bztcGateway.service
在bztcGateway.service添加以下内容
[Unit]
Description=Java Gateway Service
After=network.target
[Service]
Type=simple
User=root
ExecStart=/usr/local/bin/startGateway.sh
Restart=on-failure
RestartSec=10
[Install]
WantedBy=multi-user.target
五、重新加载 Systemd 配置
sudo systemctl daemon-reload
六、启动服务并使其在开机时自启
sudo systemctl start bztcGateway.service
sudo systemctl enable bztcGateway.service
七、检查服务状态
sudo systemctl status bztcGateway.service
总结
这样配置后,您的 Java 应用程序将在系统启动时自动启动,并且会在后台运行。如果需要对服务进行更多管理,例如重启或停止,可以使用 systemctl 命令。