01-17-2022, 02:47 AM
Introduction
Virtualmin is a free and open-source web hosting control panel. It makes hosting websites on your VPS a simple process. Virtualmin creates official install scripts to make installing Virtualmin is easy!
Prerequisites
1. Set the server's hostname. Replace example.com with your FQDN (Fully Qualified Domain Name)
2. Use wget to download the install script from the official Virtualmin website.
3. Make the script executable.
4. Run the install script. This will install both Webmin and Virtualmin on your server.
The install script has different options/flags that you can use. Run it with the --help flag to see all the options.
5. Allow access to Virtualmin through the firewall.
By default, Virtualmin runs on port 10000. Here's an example of the web address you will need to visit to access:
Virtualmin is a free and open-source web hosting control panel. It makes hosting websites on your VPS a simple process. Virtualmin creates official install scripts to make installing Virtualmin is easy!
Prerequisites
- An Ubuntu 20.04 server
1. Set the server's hostname. Replace example.com with your FQDN (Fully Qualified Domain Name)
Code:
sudo hostnamectl set-hostname example.com
2. Use wget to download the install script from the official Virtualmin website.
Code:
wget http://software.virtualmin.com/gpl/scripts/install.sh
3. Make the script executable.
Code:
chmod a+x install.sh
4. Run the install script. This will install both Webmin and Virtualmin on your server.
Code:
sudo ./install.sh
5. Allow access to Virtualmin through the firewall.
Code:
sudo ufw allow 10000
By default, Virtualmin runs on port 10000. Here's an example of the web address you will need to visit to access:
Code:
http://example.com:10000