Skip to content

Instantly share code, notes, and snippets.

@mariogarcia-ar
Created September 6, 2022 17:11
Show Gist options
  • Select an option

  • Save mariogarcia-ar/6702bd3ae60aaf129318d5f86dd9a0cf to your computer and use it in GitHub Desktop.

Select an option

Save mariogarcia-ar/6702bd3ae60aaf129318d5f86dd9a0cf to your computer and use it in GitHub Desktop.
#source: https://computingforgeeks.com/install-virtualmin-on-centos-rhel-linux/
# Step 1: Update CentOS / RHEL system
sudo dnf update -y
sudo hostnamectl set-hostname <your-hostname>
# Step 2: Download Virtualmin install script
sudo dnf -y install wget
wget http://software.virtualmin.com/gpl/scripts/install.sh
#Step 3: Make the script executable and install Virtualmin
chmod a+x install.sh
sudo ./install.sh
#Step 4: Configure Firewall for Virtualmin on CentOS | RHEL 8
sudo firewall-cmd --zone=public --add-port=10000/tcp --permanent
sudo firewall-cmd --reload
#Step 5: Configure Virtualmin on CentOS | RHEL 8
https://<hostname>:10000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment