Install on macOS or Linux with Homebrew:
brew install nyg/jmxsh/jmxsh
Download the release JAR and run it directly:
java -jar jmxsh-<version>.jar
Add the repository and install:
curl -fsSL https://jmx.sh/apt/gpg.asc | sudo gpg --dearmor -o /usr/share/keyrings/jmxsh.gpg
echo "deb [signed-by=/usr/share/keyrings/jmxsh.gpg] https://jmx.sh/apt stable main" | sudo tee /etc/apt/sources.list.d/jmxsh.list
sudo apt update && sudo apt install jmxsh
: Analyze these as the commercial and live-performance pillars that defined the 10th-anniversary era. The Controversy of "Purity"
The reissue packed 25 tracks, including the original album plus rare demos and remixes that sounded like "completely different songs". slipknot 10th anniversary
The 10th anniversary of their 1999 self-titled debut album and their sophomore masterpiece, Iowa , allowed fans to revisit the band's most volatile eras. These milestones proved that Slipknot’s blend of down-tuned guitars, triple-percussion assaults, and raw human anguish possessed genuine staying power. : Analyze these as the commercial and live-performance
The Vol. 3 Era: Heavily stylized, with Corey’s "scab" mask and Paul Gray’s iconic pig mask becoming staples of the genre’s imagery. Legacy and the 10th Anniversary Commemorations Legacy and the 10th Anniversary Commemorations More than
More than just a marketing campaign, the "Slipknot 10th anniversary" solidified the album's status as a timeless masterpiece of heavy music. It proved that Slipknot was not a gimmick or a passing trend of the late-90s nu-metal boom. By re-examining their roots a decade later, the band reminded the world that their foundation was built on genuine pain, exceptional musical synchronization, and an innovative visual identity that continues to inspire generations of heavy bands today.
Ten years after its release, the album was no longer just a "nu-metal" relic; it was recognized as a blueprint for modern extreme music. The 10th-anniversary celebration allowed for a critical re-evaluation of how Slipknot managed to maintain their integrity while becoming a global stadium act. It captured the band at their most volatile—before the tragic loss of founding bassist Paul Gray in 2010 and the departure of legendary drummer Joey Jordison, who originally designed the band's iconic logo. Today, as the band has moved past their 25th anniversary
Automate JMX operations with scripts and pipes — perfect for monitoring, alerting, and CI/CD pipelines.
Run commands from a file:
java -jar jmxsh-<version>.jar \
-l localhost:9999 \
--input commands.txt
Pipe commands via stdin:
echo "open localhost:9999 && beans" \
| java -jar jmxsh-<version>.jar -n
| Command | Description |
|---|---|
open <host:port> | Connect to a remote JMX endpoint (RMI) |
open jmxmp://<host:port> | Connect to a remote JMX endpoint (JMXMP) |
open <pid> | Attach to a local JVM by process ID |
domains | List all MBean domains |
beans | List all MBeans (filter by domain with -d) |
bean <name> | Select an MBean for subsequent operations |
info | Show attributes and operations of the selected MBean |
get <attr> | Read an MBean attribute |
set <attr> <value> | Write an MBean attribute |
run <op> [args] | Invoke an MBean operation |
close | Disconnect from the JMX endpoint |
jvms | List local Java processes |
help | Show all available commands |
Tab completion and command history powered by JLine.
Connect via host:port (RMI), jmxmp:// (JMXMP), JMX URL, or local PID.
Browse domains, read/write attributes, invoke operations.
Run multiple commands in one line with &&.
Automate JMX operations via files or piped input.
Silent, brief, or verbose output modes.
Follows the XDG Base Directory spec — keeps your home directory clean.