本文共 658 字,大约阅读时间需要 2 分钟。
# cd /usr/lib/systemd/system
[Unit]:服务的说明Description:描述服务After:在哪些描述服务类别之后启动[Service]服务运行参数的设置Type=forking是后台运行的形式ExecStart为服务的具体运行命令ExecReload为重启命令ExecStop为停止命令PrivateTmp=True表示给服务分配独立的临时空间# 注意:启动、重启、停止命令全部要求使用绝对路径[Install]服务安装的相关设置,可设置为多用户
[Unit]Description=TomcatAfter=network.target remote-fs.target nss-lookup.target[Service]Type=forkingExecStart=/usr/local/apache-tomcat-8.5.23/bin/startup.sh#ExecReload=/usr/local/nginx/sbin/nginx -s reloadExecStop=/usr/local/apache-tomcat-8.5.23/bin/shutdown.sh[Install]WantedBy=multi-user.target
$ sudo systemctl start tomcat
$ sudo systemctl enable tomcat
转载地址:http://taxna.baihongyu.com/