如何在 ubuntu 中启动 jbpm 作为系统服务?

How to start jbpm as system's service in ubuntu?

我刚刚从 JBPM 下载了 jbpm 服务器。 它以 运行 "jbpm-server/bin/standalone.sh" 开头。但是我想像 ubuntu 一样启动 jbpm 服务---> systemctl start jbpm.

任何人都可以向我提供为此创建启动脚本的详细信息。

您应该在您的 systemd 目录中创建一个文件,例如 /etc/systemd/system/change_me.service 并用基本设置填充它:

[Unit]
Description=Your service's description

[Service]
ExecStart=/path/to/executable.sh

[Install]
WantedBy=multi-user.target

然后您应该重新加载您的 systemd 配置,以便通过

使用新服务更新它
sudo systemctl daemon-reload

然后开始吧

sudo systemctl start change_me

如果您想更精细地控制 systemd 的服务文件,您应该通过以下方式阅读手册页:

man systemd.service