How To Install mod_nss on Fedora 36

In this tutorial we learn how to install mod_nss in Fedora 36. mod_nss is SSL/TLS module for the Apache HTTP server

Introduction

In this tutorial we learn how to install mod_nss on Fedora 36.

What is mod_nss

The mod_nss module provides strong cryptography for the Apache Web server via the Secure Sockets Layer (SSL) and Transport Layer Security (TLS) protocols using the Network Security Services (NSS) security library.

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

Install mod_nss on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

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

sudo dnf -y install mod_nss

Install mod_nss on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

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

sudo yum -y install mod_nss

How To Uninstall mod_nss on Fedora 36

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

sudo dnf remove mod_nss

mod_nss Package Contents on Fedora 36

/etc/httpd/alias
/etc/httpd/alias/cert8.db
/etc/httpd/alias/install.log
/etc/httpd/alias/key3.db
/etc/httpd/alias/libnssckbi.so
/etc/httpd/alias/secmod.db
/etc/httpd/conf.d/nss.conf
/etc/httpd/conf.modules.d/10-nss.conf
/usr/lib/.build-id
/usr/lib/.build-id/0d
/usr/lib/.build-id/0d/f22c1bbda5ec9581185d1e62e69d2021191f47
/usr/lib/.build-id/f4
/usr/lib/.build-id/f4/4eaeaeda037f466de115e22958b685d9056f1e
/usr/lib64/httpd/modules/libmodnss.so
/usr/libexec/nss_pcache
/usr/sbin/gencert
/usr/sbin/nss_pcache
/usr/share/doc/mod_nss
/usr/share/doc/mod_nss/LICENSE
/usr/share/doc/mod_nss/README
/usr/share/doc/mod_nss/mod_nss.html
/usr/share/man/man8/gencert.8.gz
/usr/share/man/man8/nss_pcache.8.gz

References

Summary

In this tutorial we learn how to install mod_nss on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).