Naveed
Naveed

Reputation: 411

Executing Java Mission Control from command line

I have copied the JMC 7.0 binaries in linux. Any idea on how to start the application from commandline or do we need GUI to be enabled in linux ?

Thanks, Naveed

Upvotes: 1

Views: 769

Answers (1)

Kire Haglin
Kire Haglin

Reputation: 7069

There is no headless mode of JMC, but you can start a recording and open it from the shell.

java -XX:StartFlightRecording:filename=dump.jfr -version
./jmc -openFile dump.jfr 

Upvotes: 2

Related Questions