How To Install jmc on CentOS 8

In this tutorial we learn how to install jmc on CentOS 8. jmc is JDK Mission Control is a profiling and diagnostics tool

Introduction

In this tutorial we learn how to install jmc on CentOS 8.

What is jmc

JDK Mission Control is a powerful profiler for HotSpot JVMs and has an advanced set of tools that enables efficient and detailed analysis of the extensive data collected by JDK Flight Recorder. The tool chain enables developers and administrators to collect and analyze data from Java applications running locally or deployed in production environments.

We can use yum or dnf to install jmc on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install jmc.

Install jmc on CentOS 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install jmc using yum by running the following command:

sudo yum -y install jmc

Install jmc on CentOS 8 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install jmc using dnf by running the following command:

sudo dnf -y install jmc

How To Uninstall jmc on CentOS 8

To uninstall only the jmc package we can use the following command:

sudo dnf remove jmc

References

Summary

In this tutorial we learn how to install jmc on CentOS 8 using yum and dnf.