Skip to content

Instantly share code, notes, and snippets.

@DmitryevichD
Created December 12, 2018 07:48
Show Gist options
  • Save DmitryevichD/8041d336d32c026ce0e4a01d96c9cc55 to your computer and use it in GitHub Desktop.
Save DmitryevichD/8041d336d32c026ce0e4a01d96c9cc55 to your computer and use it in GitHub Desktop.
ActiveMQ service file for systemd
# cat activemq.service
[Unit]
Description=Apache ActiveMQ
After=network-online.target
[Service]
Type=forking
WorkingDirectory=/opt/activemq/bin
ExecStart=/opt/activemq/bin/activemq start
ExecStop=/opt/activemq/bin/activemq stop
Restart=on-abort
User=activemq
Group=activemq
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment