How To Install jmc on AlmaLinux 8

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

Introduction

In this tutorial we learn how to install jmc on AlmaLinux 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 AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install jmc.

Install jmc on AlmaLinux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

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

sudo dnf -y install jmc

Install jmc on AlmaLinux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

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

sudo yum -y install jmc

How To Uninstall jmc on AlmaLinux 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 AlmaLinux 8 using yum and dnf.