Skip to content

Instantly share code, notes, and snippets.

@dovydasvenckus
Created October 31, 2017 15:57
Show Gist options
  • Save dovydasvenckus/d90afb9be418b0b88c5810b343e651df to your computer and use it in GitHub Desktop.
Save dovydasvenckus/d90afb9be418b0b88c5810b343e651df 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