1. 在/lib/systemd/system目录下创建服务启动脚本testservice.service
2. 文件内容如下:
1 [Unit] 2 Description=TestService 3 4 [Service] 5 ExecStart=/home/test/exec # 可执行文件路径 6 WorkingDirectory=/home/test/ #工作目录 7 Restart=always 8 User=car 9 ExecReload=/bin/kill -SIGHUP $MAINPID10 ExecStop=/bin/kill -SIGINT $MAINPID11 12 [Install]13 WantedBy=default.target
3. sudo systemctl start testservice.service