How to run an application without the internet
within a private network in RHEL 8.
Install the vsftpd package.
dnf install vsftpd
Start and enable the vsftpd service.
systemctl start vsftpd
systemctl enable vsftpd
Create a directory to store the YUM repository files.
mkdir -p /var/ftp/pub/rhel8.5/
Copy the RHEL 8 D...
tks.hashnode.dev2 min read