ActiveMQ: Difference between revisions
Jump to navigation
Jump to search
Line 51: | Line 51: | ||
export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64 | export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64 | ||
</source> | </source> | ||
==Knowledge== | |||
netstat -an|find "61616" | |||
netstat -nl|grep 61616 | |||
==References== | ==References== |
Revision as of 18:55, 23 July 2022
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-8-openjdk-amd64
vim /opt/cli/apache-activemq-5.17.1/conf/jetty.xml
#:%s/127.0.0.1/0.0.0.0/gc
sudo tee -a /etc/systemd/system/activemq.service >/dev/null <<'EOF'
[Unit]
Description=Apache ActiveMQ Message Broker
After=network-online.target
[Service]
Environment="JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64"
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
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
netstat -an|find "61616" netstat -nl|grep 61616
References
| ||