ActiveMQ

From Chorke Wiki
Jump to navigation Jump to search

Install Classic

sudo wget -c https://dlcdn.apache.org\
/activemq/5.17.1/apache-activemq-5.17.1-bin.tar.gz        -P /opt/cli/
sudo tar -xvzf /opt/cli/apache-activemq-5.17.1-bin.tar.gz -C /opt/cli/
sudo rm  -rf   /opt/cli/apache-activemq-5.17.1-bin.tar.gz

export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64
vim /opt/cli/apache-activemq-5.17.1/conf/jetty.xml
#:%s/127.0.0.1/0.0.0.0/gc

sudo vim /opt/cli/apache-activemq-5.17.1/bin/env
#%s/#JAVA_HOME=""/JAVA_HOME="\/usr\/lib\/jvm\/java-11-openjdk-amd64"/gc
sudo addgroup --quiet --system activemq
sudo adduser  --quiet --system --ingroup activemq --no-create-home --disabled-password activemq
sudo chown -R activemq:activemq /opt/cli/apache-activemq-5.17.1
sudo tee -a /etc/systemd/system/activemq.service >/dev/null <<'EOF'
[Unit]
Description=Apache ActiveMQ
After=network-online.target

[Service]
Type=forking
User=activemq
Group=activemq

WorkingDirectory=/opt/cli/apache-activemq-5.17.1/bin
ExecStart=/opt/cli/apache-activemq-5.17.1/bin/activemq start
ExecStop=/opt/cli/apache-activemq-5.17.1/bin/activemq stop
Restart=on-abort

[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable activemq.service
sudo systemctl status activemq.service
sudo systemctl start  activemq.service
tail -f -n 100 /opt/cli/apache-activemq-5.17.1/data/activemq.log
console : http://127.0.0.1:8161/admin/
username: admin
password: admin

Install Artemis

sudo wget -c https://dlcdn.apache.org/activemq\
/activemq-artemis/2.23.1/apache-artemis-2.23.1-bin.tar.gz -P /opt/cli/
sudo tar -xvzf  /opt/cli/apache-artemis-2.23.1-bin.tar.gz -C /opt/cli/
sudo rm  -rf    /opt/cli/apache-artemis-2.23.1-bin.tar.gz

export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64

Knowledge

sudo ufw allow 8161/tcp
netstat -an|find "61616"
netstat -nl|grep 61616

References