CentOS7 利用systemctl添加自定义系统服务

systemctl介绍

自定义系统服务配置

centos7系统的配置目录:/etc/systemd/system

创建一个配置文件

以服务的名称命名,例如:gateway-api.service

编写配置文件

[Unit]
Description=gateway-api

[Service]
#PIDFile=/opt/apps/pid/gateway-api.pid
EnvironmentFile=/opt/apps/comm.env
ExecStart=-/opt/apps/jdk1.8/bin/java -jar /opt/apps/gateway-api-0.0.1-SNAPSHOT.jar
#ExecReload=
#ExecStop=
Restart=on-failure
RestartSec=1s
LimitNOFILE=40000

[Install]
WantedBy=multi-user.target
上一篇:ubuntu14.04 为Firefox安装flash插件


下一篇:mycat学习笔记:mysql配置