Search Criteria
Package Details: activemq 6.0.0-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/activemq.git (read-only, click to copy) |
---|---|
Package Base: | activemq |
Description: | Popular and powerful open source messaging and Integration Patterns provider |
Upstream URL: | https://activemq.apache.org |
Licenses: | Apache 2.0 |
Submitter: | None |
Maintainer: | Christian.H |
Last Packager: | Christian.H |
Votes: | 6 |
Popularity: | 0.000057 |
First Submitted: | 2017-07-17 03:13 (UTC) |
Last Updated: | 2023-11-24 09:52 (UTC) |
Dependencies (2)
- java-runtime (jre10AUR, jre12AUR, jdk10AUR, jdk10-openj9-binAUR, jdk7AUR, jre7AUR, amazon-corretto-16AUR, jdk8-graalvm-binAUR, jdk16-graalvm-binAUR, jdk16-adoptopenjdkAUR, liberica-jre-11-binAUR, jdk11-j9-binAUR, jre11-jbr-xdgAUR, jre16-openjdkAUR, jre14-openjdkAUR, jre15AUR, jre14AUR, jre13AUR, jre16AUR, jre18-openjdkAUR, amazon-corretto-19-binAUR, jdk19-graalvm-binAUR, liberica-jre-11-full-binAUR, jdk19-graalvm-ee-binAUR, jdk13-openjdk-binAUR, liberica-jre-8-full-binAUR, jdk11-graalvm-binAUR, jre-openj9AUR, jdk11-graalvm-ee-binAUR, jre12-openjdkAUR, jdk11-dragonwell-standard-binAUR, jdk11-jetbrains-binAUR, jdk20-graalvm-binAUR, jdk17-graalvm-binAUR, jdk8-graalvm-ee-binAUR, jdk20-openj9-binAUR, zulu-13-binAUR, jdk8-dragonwell-extended-binAUR, jdk8-dragonwell-standard-binAUR, jdk11-dragonwell-extended-binAUR, jdk17-dragonwell-standard-binAUR, jre11AUR, jdk8-j9-binAUR, jdk7-j9-binAUR, jdk7r1-j9-binAUR, jdk8-dragonwell-extendedAUR, jre13-openjdkAUR, jre15-openjdkAUR, jdk21-graalvm-binAUR, jre17-jetbrainsAUR, jdk8-openj9-binAUR, jre-ltsAUR, microsoft-openjdk-11-binAUR, microsoft-openjdk-17-binAUR, microsoft-openjdk-21-binAUR, liberica-nik-24-full-binAUR, jre21-jetbrains-gitAUR, jdk21-jetbrains-gitAUR, zulu-17-binAUR, zulu-11-binAUR, zulu-8-binAUR, mandrel-binAUR, mandrel24-binAUR, liberica-jdk-17-full-binAUR, liberica-jdk-11-lite-binAUR, liberica-jdk-11-full-binAUR, liberica-jdk-11-binAUR, jdk17-graalvm-ee-binAUR, jdk21-graalvm-ee-binAUR, jdk22-graalvm-ee-binAUR, jdk20-graalvm-ee-binAUR, jdk22-graalvm-binAUR, jre19-openjdkAUR, jdk17-jetbrains-binAUR, zulu-jdk-fx-binAUR, jre21-jetbrainsAUR, jdk17-zulu-prime-binAUR, jre17AUR, java-openjdk-binAUR, amazon-corretto-17AUR, amazon-corretto-21-binAUR, jdk21-temurinAUR, amazon-corretto-8AUR, amazon-corretto-11AUR, jdk11-temurinAUR, liberica-jdk-full-binAUR, liberica-jdk-21-full-binAUR, liberica-jdk-8-full-binAUR, jdk17-temurinAUR, jdk8-temurinAUR, zulu-21-binAUR, jdk-temurinAUR, jre8AUR, jdk8AUR, zulu-17-fx-binAUR, jdk8-perfAUR, zulu-jre-fx-binAUR, zulu-fx-binAUR, zulu8-fx-binAUR, zulu11-fx-binAUR, zulu17-fx-binAUR, zulu21-fx-binAUR, jdk-openj9-binAUR, jdk11-openj9-binAUR, jre-jetbrainsAUR, jre-openjdk-wakefieldAUR, jdk-openjdk-wakefieldAUR, jdk21-openj9-binAUR, zulu-23-binAUR, jreAUR, jdkAUR, jdk21-jetbrains-binAUR, jre-zulu-binAUR, jre-zulu-fx-binAUR, jdk21-dragonwell-standard-binAUR, jdk21-dragonwell-extended-binAUR, jdk-android-studioAUR, jdk17-openj9-binAUR, jre-zuluAUR, jre-zulu-fxAUR, jre21-zulu-binAUR, jre17-zulu-binAUR, jdk23-graalvm-ee-binAUR, zing-8-binAUR, zing-21-binAUR, java-openjdk-ea-binAUR, jdk-openjdk, jdk11-openjdk, jdk17-openjdk, jdk21-openjdk, jre-openjdk, jre11-openjdk, jre17-openjdk, jre21-openjdk, jre8-openjdk)
- lsb-release
Required by (1)
- bgbilling (optional)
Latest Comments
« First ‹ Previous 1 2
<deleted-account> commented on 2019-02-28 09:05 (UTC)
Thanks for the update.
I think the current
service
file isn't right, tho: The type's stillforking
, butjava -jar activemq.jar
doesn't fork, nor does it write a PID file. As far as I understand both of these things come from the service wrapper used by the shell script (which exists to add all those service things like PID files and forking to Java apps). If you don't use this wrapper I think you have to usesimple
as type, and then systemd handles the forking and stuff itself. The PIDFile option isn't used in this case. The service file would look like this then:To use the forking type you need to use the activemq shell script which forks; in this case PIDFile must point to the actual PID file written by activemq (somewhere under
/opt/activemq…/data
I think).<deleted-account> commented on 2019-02-27 13:04 (UTC)
Please remove
>/dev/null 2>&1
fromExecStart
inservice
.ExecStart
is no shell command, so the redirection has no effect (checksystemctl status
); the service starts only by coincidence, because activemq seems to ignore excess arguments.The systemd.service manpage also recommends to set PIDFile for
forking
daemons, but why not switch tosimple
and useconsole
instead ofstart
, and thus let systemd handle all the forking? You could then even use justjava -jar /opt/activemq/bin/activemq.jar start
asExecStart
, which would have the added benefit of making activemq's output appear insystemctl status activemq
andjournalctl
.<deleted-account> commented on 2018-07-24 05:36 (UTC)
sh-4.4# ps aux | grep activemq root 14362 0.0 0.0 18416 1832 ? Sl 16:12 0:00 /opt/activemq/bin/linux-x86-64/wrapper /opt/activemq/bin/linux-x86-64/wrapper.conf wrapper.syslog.ident=ActiveMQ wrapper.pidfile=/opt/activemq/bin/linux-x86-64/./ActiveMQ.pid wrapper.daemonize=TRUE wrapper.lockfile=/var/lock/subsys/ActiveMQ root 14366 4.4 3.9 4584456 299460 ? Sl 16:12 0:16 java -Dactivemq.home=../.. -Dactivemq.base=../.. -Djavax.net.ssl.keyStorePassword=password -Djavax.net.ssl.trustStorePassword=password -Djavax.net.ssl.keyStore=../../conf/broker.ks -Djavax.net.ssl.trustStore=../../conf/broker.ts -Dcom.sun.management.jmxremote -Dorg.apache.activemq.UseDedicatedTaskRunner=true -Djava.util.logging.config.file=logging.properties -Dactivemq.conf=../../conf -Dactivemq.data=../../data -Djava.security.auth.login.config=../../conf/login.config -Xmx1024m -Djava.library.path=../../bin/linux-x86-64/ -classpath ../../bin/wrapper.jar:../../bin/activemq.jar -Dwrapper.key=lnFjVqvm1yxySrc_ -Dwrapper.port=32000 -Dwrapper.jvm.port.min=31000 -Dwrapper.jvm.port.max=31999 -Dwrapper.pid=14362 -Dwrapper.version=3.2.3 -Dwrapper.native_library=wrapper -Dwrapper.service=TRUE -Dwrapper.cpu.timeout=10 -Dwrapper.jvmid=1 org.tanukisoftware.wrapper.WrapperSimpleApp org.apache.activemq.console.Main start
Try running with the default settings. Must earn properly. Then make further adjustments. Perhaps you need to reboot after installation. Or run the command: source /etc/profile.d/activemq.sh. And then run the service activemq.
Replace symbol link /usr/share/webapps/activemq with /usr/share/webapps/activemq-demo. And then the demo will work.
Ssruno commented on 2018-07-23 19:12 (UTC)
Doing a: ps aux | grep activemq
We can see that those paths are being formed with a double slash.
root 22069 2.9 1.9 4588012 306416 pts/1 Sl+ 14:54 0:14 /usr/bin/java -Xms64M -Xmx1G -Djava.util.logging.config.file=logging.properties -Djava.security.auth.login.config=/opt/activemq//conf/login.config -Dcom.sun.management.jmxremote -Djava.awt.headless=true -Djava.io.tmpdir=/opt/activemq//tmp -Dactivemq.classpath=/opt/activemq//conf:/opt/activemq//../lib/: -Dactivemq.home=/opt/activemq/ -Dactivemq.base=/opt/activemq/ -Dactivemq.conf=/opt/activemq//conf -Dactivemq.data=/opt/activemq//data -jar /opt/activemq//bin/activemq.jar start
Ssruno commented on 2018-07-23 18:59 (UTC)
Hi 4le34n, thanks for maintaining this package.
Just after finishing the installation I try to get the service up:
/opt/activemq/bin/activemq console
Accessing http://localhost:8161/admin/ doesn't work, in order to navigate it, I have to:
sudo ln -s /usr/share/webapps/activemq /opt/activemq/webapps
Maybe this tweak can be added for the next release.
PS: The http://localhost:8161/demo/ doesn't work either
sprooose commented on 2017-12-12 15:16 (UTC)
Is the web management console included in this package? I can't see that it has started in the startup trace.
<deleted-account> commented on 2017-10-09 03:23 (UTC)
killermoehre commented on 2017-10-06 08:11 (UTC)
« First ‹ Previous 1 2