123456789101112131415161718 |
- [Unit]
- Description=Yudao Server Application
- After=network.target
- [Service]
- Type=simple
- User={{ app_user }}
- Group={{ app_group }}
- Environment="JAVA_HOME=/usr/local/lib/sdk/java/v-21.0.2+13/java-21.0.2+13"
- WorkingDirectory={{ app_home }}
- ExecStart=/usr/local/lib/sdk/java/v-21.0.2+13/java-21.0.2+13/bin/java {{ java_opts }} -jar {{ app_home }}/{{ app_name }}.jar
- SuccessExitStatus=143
- TimeoutStopSec=10
- Restart=on-failure
- RestartSec=5
- [Install]
- WantedBy=multi-user.target
|