ActiveMQ: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 2: | Line 2: | ||
===Install=== | ===Install=== | ||
---- | ---- | ||
< | <syntaxhighlight lang="bash"> | ||
sudo apt -qq update;\ | sudo apt -qq update;\ | ||
export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64;\ | export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64;\ | ||
bash <(curl -s 'https://cdn.chorke.org/exec/cli/bash/install/apache-activemq/5.17.1.sh.txt') | bash <(curl -s 'https://cdn.chorke.org/exec/cli/bash/install/apache-activemq/5.17.1.sh.txt') | ||
</ | </syntaxhighlight> | ||
===Remove=== | ===Remove=== | ||
---- | ---- | ||
< | <syntaxhighlight lang="bash"> | ||
sudo systemctl stop activemq.service;\ | sudo systemctl stop activemq.service;\ | ||
sudo systemctl disable activemq.service;\ | sudo systemctl disable activemq.service;\ | ||
Line 16: | Line 16: | ||
sudo rm -rf /etc/systemd/system/activemq.service;\ | sudo rm -rf /etc/systemd/system/activemq.service;\ | ||
sudo systemctl daemon-reload | sudo systemctl daemon-reload | ||
</ | </syntaxhighlight> | ||
===Hacking=== | ===Hacking=== | ||
---- | ---- | ||
< | <syntaxhighlight lang="bash"> | ||
sudo wget -c https://dlcdn.apache.org\ | sudo wget -c https://dlcdn.apache.org\ | ||
/activemq/5.17.1/apache-activemq-5.17.1-bin.tar.gz -P /opt/cli/ | /activemq/5.17.1/apache-activemq-5.17.1-bin.tar.gz -P /opt/cli/ | ||
Line 32: | Line 32: | ||
sudo vim /opt/cli/apache-activemq-5.17.1/bin/env | sudo vim /opt/cli/apache-activemq-5.17.1/bin/env | ||
#%s/#JAVA_HOME=""/JAVA_HOME="\/usr\/lib\/jvm\/java-11-openjdk-amd64"/gc | #%s/#JAVA_HOME=""/JAVA_HOME="\/usr\/lib\/jvm\/java-11-openjdk-amd64"/gc | ||
</ | </syntaxhighlight> | ||
< | <syntaxhighlight lang="bash"> | ||
sudo addgroup --quiet --system activemq | sudo addgroup --quiet --system activemq | ||
sudo adduser --quiet --system --ingroup activemq --no-create-home --disabled-password 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 chown -R activemq:activemq /opt/cli/apache-activemq-5.17.1 | ||
</ | </syntaxhighlight> | ||
< | <syntaxhighlight lang="bash"> | ||
sudo tee -a /etc/systemd/system/activemq.service >/dev/null <<'EOF' | sudo tee -a /etc/systemd/system/activemq.service >/dev/null <<'EOF' | ||
[Unit] | [Unit] | ||
Line 59: | Line 59: | ||
WantedBy=multi-user.target | WantedBy=multi-user.target | ||
EOF | EOF | ||
</ | </syntaxhighlight> | ||
{| | {| | ||
| | | | ||
< | <syntaxhighlight lang="bash"> | ||
sudo systemctl daemon-reload | sudo systemctl daemon-reload | ||
sudo systemctl enable activemq.service | sudo systemctl enable activemq.service | ||
sudo systemctl status activemq.service | sudo systemctl status activemq.service | ||
sudo systemctl start activemq.service | sudo systemctl start activemq.service | ||
</ | </syntaxhighlight> | ||
| | | | ||
sudo tail -f -n 100 /opt/cli/apache-activemq-5.17.1/data/activemq.log | sudo tail -f -n 100 /opt/cli/apache-activemq-5.17.1/data/activemq.log | ||
Line 79: | Line 79: | ||
===Install=== | ===Install=== | ||
---- | ---- | ||
< | <syntaxhighlight lang="bash"> | ||
sudo apt -qq update;\ | sudo apt -qq update;\ | ||
export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64;\ | export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64;\ | ||
bash <(curl -s 'https://cdn.chorke.org/exec/cli/bash/install/apache-artemis/2.23.1.sh.txt') | bash <(curl -s 'https://cdn.chorke.org/exec/cli/bash/install/apache-artemis/2.23.1.sh.txt') | ||
</ | </syntaxhighlight> | ||
===Remove=== | ===Remove=== | ||
---- | ---- | ||
< | <syntaxhighlight lang="bash"> | ||
sudo systemctl stop artemis.service;\ | sudo systemctl stop artemis.service;\ | ||
sudo systemctl disable artemis.service;\ | sudo systemctl disable artemis.service;\ | ||
Line 94: | Line 94: | ||
sudo rm -rf /var/apache-artemis;\ | sudo rm -rf /var/apache-artemis;\ | ||
sudo systemctl daemon-reload | sudo systemctl daemon-reload | ||
</ | </syntaxhighlight> | ||
===Hacking=== | ===Hacking=== | ||
---- | ---- | ||
< | <syntaxhighlight lang="bash"> | ||
sudo wget -c https://dlcdn.apache.org/activemq\ | sudo wget -c https://dlcdn.apache.org/activemq\ | ||
/activemq-artemis/2.23.1/apache-artemis-2.23.1-bin.tar.gz -P /opt/cli/ | /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 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 | sudo rm -rf /opt/cli/apache-artemis-2.23.1-bin.tar.gz | ||
</ | </syntaxhighlight> | ||
< | <syntaxhighlight lang="bash"> | ||
export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64;\ | export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64;\ | ||
EXPORT_OSTYPE_FIND=' export OSTYPE';\ | EXPORT_OSTYPE_FIND=' export OSTYPE';\ | ||
Line 113: | Line 113: | ||
JAVA_HOME=\"$JAVA_HOME\"";\ | JAVA_HOME=\"$JAVA_HOME\"";\ | ||
sudo sed -i "s|$EXPORT_OSTYPE_FIND|$EXPORT_OSTYPE_FILL|" /opt/cli/apache-artemis-2.23.1/bin/artemis | sudo sed -i "s|$EXPORT_OSTYPE_FIND|$EXPORT_OSTYPE_FILL|" /opt/cli/apache-artemis-2.23.1/bin/artemis | ||
</ | </syntaxhighlight> | ||
< | <syntaxhighlight lang="bash"> | ||
sudo addgroup --quiet --system artemis | sudo addgroup --quiet --system artemis | ||
sudo adduser --quiet --system --ingroup artemis --no-create-home --disabled-password artemis | sudo adduser --quiet --system --ingroup artemis --no-create-home --disabled-password artemis | ||
sudo chown -R artemis:artemis /opt/cli/apache-artemis-2.23.1 | sudo chown -R artemis:artemis /opt/cli/apache-artemis-2.23.1 | ||
</ | </syntaxhighlight> | ||
< | <syntaxhighlight lang="bash"> | ||
sudo /opt/cli/apache-artemis-2.23.1/bin/artemis create /var/apache-artemis | sudo /opt/cli/apache-artemis-2.23.1/bin/artemis create /var/apache-artemis | ||
:' | :' | ||
Line 137: | Line 137: | ||
Y | Y | ||
' | ' | ||
</ | </syntaxhighlight> | ||
< | <syntaxhighlight lang="bash"> | ||
export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64;\ | export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64;\ | ||
EXPORT_OSTYPE_FIND=' export OSTYPE';\ | EXPORT_OSTYPE_FIND=' export OSTYPE';\ | ||
Line 154: | Line 154: | ||
sudo /var/apache-artemis/bin/artemis run | sudo /var/apache-artemis/bin/artemis run | ||
sudo chown -R artemis:artemis /var/apache-artemis | sudo chown -R artemis:artemis /var/apache-artemis | ||
</ | </syntaxhighlight> | ||
< | <syntaxhighlight lang="bash"> | ||
sudo chown -R artemis:artemis /var/apache-artemis | sudo chown -R artemis:artemis /var/apache-artemis | ||
sudo tee -a /etc/systemd/system/artemis.service >/dev/null <<'EOF' | sudo tee -a /etc/systemd/system/artemis.service >/dev/null <<'EOF' | ||
Line 179: | Line 179: | ||
WantedBy=multi-user.target | WantedBy=multi-user.target | ||
EOF | EOF | ||
</ | </syntaxhighlight> | ||
{| | {| | ||
| | | | ||
< | <syntaxhighlight lang="bash"> | ||
sudo systemctl daemon-reload | sudo systemctl daemon-reload | ||
sudo systemctl enable artemis.service | sudo systemctl enable artemis.service | ||
sudo systemctl status artemis.service | sudo systemctl status artemis.service | ||
sudo systemctl start artemis.service | sudo systemctl start artemis.service | ||
</ | </syntaxhighlight> | ||
| | | | ||
sudo tail -f -n 100 /var/apache-artemis/log/artemis.log | sudo tail -f -n 100 /var/apache-artemis/log/artemis.log | ||
Line 230: | Line 230: | ||
| valign="top" | | | valign="top" | | ||
* [https://superuser.com/questions/513159/ Systemd » Safe Remove Services] | * [https://superuser.com/questions/513159/ Systemd » Safe Remove Services] | ||
* [[Linux User Creation]] | |||
| valign="top" | | | valign="top" | |
Latest revision as of 16:47, 12 December 2024
Classic
Install
sudo apt -qq update;\
export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64;\
bash <(curl -s 'https://cdn.chorke.org/exec/cli/bash/install/apache-activemq/5.17.1.sh.txt')
Remove
sudo systemctl stop activemq.service;\
sudo systemctl disable activemq.service;\
sudo rm -rf /opt/cli/apache-activemq-5.17.1;\
sudo rm -rf /etc/systemd/system/activemq.service;\
sudo systemctl daemon-reload
Hacking
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
|
sudo 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 |
Artemis
Install
sudo apt -qq update;\
export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64;\
bash <(curl -s 'https://cdn.chorke.org/exec/cli/bash/install/apache-artemis/2.23.1.sh.txt')
Remove
sudo systemctl stop artemis.service;\
sudo systemctl disable artemis.service;\
sudo rm -rf /etc/systemd/system/artemis.service;\
sudo rm -rf /opt/cli/apache-artemis-2.23.1;\
sudo rm -rf /var/apache-artemis;\
sudo systemctl daemon-reload
Hacking
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;\
EXPORT_OSTYPE_FIND=' export OSTYPE';\
EXPORT_OSTYPE_FILL=" export OSTYPE\n\
;;\n\
Linux*) linux=true\n\
JAVA_HOME=\"$JAVA_HOME\"";\
sudo sed -i "s|$EXPORT_OSTYPE_FIND|$EXPORT_OSTYPE_FILL|" /opt/cli/apache-artemis-2.23.1/bin/artemis
sudo addgroup --quiet --system artemis
sudo adduser --quiet --system --ingroup artemis --no-create-home --disabled-password artemis
sudo chown -R artemis:artemis /opt/cli/apache-artemis-2.23.1
sudo /opt/cli/apache-artemis-2.23.1/bin/artemis create /var/apache-artemis
:'
Creating ActiveMQ Artemis instance at: /var/apache-artemis
--user:
Please provide the default username:
admin
--password: is mandatory with this configuration:
Please provide the default password:
--allow-anonymous | --require-login:
Allow anonymous access?, valid values are Y,N,True,False
Y
'
export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64;\
EXPORT_OSTYPE_FIND=' export OSTYPE';\
EXPORT_OSTYPE_FILL=" export OSTYPE\n\
;;\n\
Linux*) linux=true\n\
JAVA_HOME=\"$JAVA_HOME\"";\
sudo sed -i "s|$EXPORT_OSTYPE_FIND|$EXPORT_OSTYPE_FILL|" /var/apache-artemis/bin/artemis
sudo sed -i "s@http://localhost:8161@http://0.0.0.0:8161@" /var/apache-artemis/etc/bootstrap.xml
sudo sed -i "s@*://localhost*@*://*@" /var/apache-artemis/etc/jolokia-access.xml
sudo chown -R artemis:artemis /var/apache-artemis
sudo /var/apache-artemis/bin/artemis run
sudo chown -R artemis:artemis /var/apache-artemis
sudo chown -R artemis:artemis /var/apache-artemis
sudo tee -a /etc/systemd/system/artemis.service >/dev/null <<'EOF'
[Unit]
Description=Apache Artemis
After=network-online.target
[Service]
Type=forking
User=artemis
Group=artemis
WorkingDirectory=/var/apache-artemis/bin
ExecStart=/var/apache-artemis/bin/artemis-service start
ExecStop=/var/apache-artemis/bin/artemis-service stop
UMask=0007
RestartSec=10
Restart=on-abort
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable artemis.service
sudo systemctl status artemis.service
sudo systemctl start artemis.service
|
sudo tail -f -n 100 /var/apache-artemis/log/artemis.log console : http://127.0.0.1:8161/console/ username: admin password: admin |
Knowledge
sudo ufw allow 8161/tcp netstat -an|find "61616" netstat -nl|grep 61616