Pages

Thursday, August 30, 2018

Install Virtualmin on ubuntu server 16.04 | Web hosting panel | Web hosting

Virtualmin is a module of webmin for managing virtual host on linux Apache web server like cPanel. It is open source web hosting control panel, designed to make it easy to manage websites, mailbox users, databases, and web applications. It supports the creation and management of Apache virtual hosts, BIND DNS domains, MySQL databases, and mailboxes and aliases with Sendmail or Postfix

we have install webmin our previous tutorial
http://itprobelemsolved.blogspot.com/2018/08/install-webmin-on-ubuntu-server-1604.html

Step 3: Installing Virtualmin
Virtualmin only supports Ubuntu LTS versions. If you don’t have those versions of Ubuntu, Virtualmin will fail to instal. If you do, then continue below.

Now that Webmin is installed, go and install Virtualmin.. Virtualmin allows you to manage Apache2 virtual hosts and DNS, just like you have with cPanel and other hosted packages.

Run the commands below to download Virtualmin script.

curl -O http://software.virtualmin.com/gpl/scripts/install.sh

Then make the script executable

sudo chmod +x install.sh

Finally, run the commands below to install Virtualmin

sudo ./install.sh

Accept the default setting and install.

When that’s done, you should have Virtualmin module enabled for Webmin and begin configuring your systems.

see the webmin on how to access the web interface
http://itprobelemsolved.blogspot.com/2018/08/install-webmin-on-ubuntu-server-1604.html

Thanks for reading and watching.

Like and subscribe to my YouTube Channel HomeTech for more interesting videos

Install Webmin on ubuntu server 16.04 x64 | setup webmin admin panel

Webmin is web based administration tool develop for managing linux server. Webmin is a control panel for server administrator to setup different services and that too from from the browser. Here we will install webmin on ubuntu server 16.04 x64.

You can delete the lock file with the following command if find the error of directory or file lock on
 apt-get or apt install:

sudo rm /var/lib/apt/lists/lock

You may also need to delete the lock file in the cache directory

sudo rm /var/cache/apt/archives/lock
sudo rm /var/lib/dpkg/lock

After that, try again instll.

Step 1: Install Webmin

install required packages

sudo apt install python apt-show-versions libapt-pkg-perl libauthen-pam-perl libio-pty-perl libnet-ssleay-perl

download and install webmin

cd /tmp && curl -L -O http://www.webmin.com/download/deb/webmin-current.deb

finally install webmin

sudo dpkg -i webmin-current.deb

Step 2: Accessing Webmin

https://localhost:10000

If you’re coming from a remote location, you must add the IP address to the allowed list… you can do that by running the commands below to open Webmin default configuration file.

sudo nano /etc/webmin/miniserv.conf

Then adding a new line to allow a specific IP or subnet.

allow=192.168.X.X
or
allow=192.168.X.0/24
for whole subnet

Save the file… you should good to go for access Webmin

Thanks for reading and watching.

Like and subscribe to my YouTube Channel HomeTech for more interesting videos