Spotter-VM/activemq.sh

19 lines
441 B
Bash
Raw Normal View History

2018-01-23 13:39:50 +01:00
#!/bin/sh
SOURCE_DIR=$(realpath $(dirname "${0}"))/activemq
# Check prerequisites
docker image ls | grep -q java || $(realpath $(dirname "${0}"))/java.sh
2018-01-23 13:39:50 +01:00
# Build Docker container
docker build -t activemq ${SOURCE_DIR}
# Configure ActiveMQ
mkdir -p /srv/activemq/data
chown -R 61616:61616 /srv/activemq/data
# Configure Solr service
cp ${SOURCE_DIR}/etc/init.d/activemq /etc/init.d/activemq
rc-update add activemq
2018-01-23 13:39:50 +01:00
service activemq start