Created
September 6, 2022 17:11
-
-
Save mariogarcia-ar/6702bd3ae60aaf129318d5f86dd9a0cf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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