How To Install ypserv on AlmaLinux 8
Introduction
In this tutorial we learn how to install ypserv
on AlmaLinux 8.
What is ypserv
The Network Information Service (NIS) is a system that provides network information (login names, passwords, home directories, group information) to all of the machines on a network. NIS can allow users to log in on any machine on the network, as long as the machine has the NIS client programs running and the user’s password is recorded in the NIS passwd database. NIS was formerly known as Sun Yellow Pages (YP). This package provides the NIS server, which will need to be running on your network. NIS clients do not need to be running the server. Install ypserv if you need an NIS server for your network. You also need to install the yp-tools and ypbind packages on any NIS client machines.
We can use yum
or dnf
to install ypserv
on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install ypserv.
Install ypserv 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 ypserv
using dnf
by running the following command:
sudo dnf -y install ypserv
Install ypserv 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 ypserv
using yum
by running the following command:
sudo yum -y install ypserv
How To Uninstall ypserv on AlmaLinux 8
To uninstall only the ypserv
package we can use the following command:
sudo dnf remove ypserv
References
Summary
In this tutorial we learn how to install ypserv
on AlmaLinux 8 using yum and dnf.