1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| #/lib/systemd/system/carbasicapp.service
| [Unit]
| Description=systemd service unit carbasicapp
| Documentation=http://startai.com
| After=network.target
|
| [Service]
| Type=simple
| ExecStart=/data3/workspace/liuxiaolong/car-service/car-service
| ExecStop=/bin/kill -s HUP $MAINPID
| KillSignal=SIGQUIT
| KillMode=process
| PrivateTmp=true
|
| [Install]
| WantedBy=multi-user.target
|
|