Topics

On this page

Last updated on Dec 18, 2020

Webmin

Percona maintains Ubuntu repos for their products. Below is process to install it quickly.

Add GPG Key

wget http://www.webmin.com/jcameron-key.asc
apt-key add jcameron-key.asc

Add Repos

echo "deb http://download.webmin.com/download/repository `lsb_release -cs` contrib" >> /etc/apt/sources.list.d/percona.list
echo "deb http://webmin.mirror.somersettechsolutions.co.uk/repository `lsb_release -cs` contrib" >> /etc/apt/sources.list.d/percona.list

Update

apt-get update

Install

apt-get install webmin

Start Using

By default, webmin starts on port 10000 with https. So you can open https://example.com/10000 in browser. Ignore any security warning that browser may give if example.com do not have a SSL certificate.

Login with your linux username and password only.

(Source: webmin official page)


Comments

  1. Hey I’m not getting anything after I try to add the repos, and after updating, I get these two:

     W: Failed to fetch http://download.webmin.com/download/repository/dists/precise/contrib/binary-i386/Packages  404  Not Found
    
    W: Failed to fetch http://webmin.mirror.somersettechsolutions.co.uk/repository/dists/precise/contrib/binary-i386/Packages  404  Not Found
    
    E: Some index files failed to download. They have been ignored, or old ones used instead.
    

    Are they at a different address now?

    1. It looks like temporary error. Can you give it a try again?

  2. davidteo Avatar
    davidteo

    Update on repo.
    I use this instead and the repo seems to work. create new webmin.list via nano and add the two line.

    nano /etc/apt/sources.list.d/webmin.list

    deb http://download.webmin.com/download/repository sarge contrib
    deb http://webmin.mirror.somersettechsolutions.co.uk/repository sarge contrib

    then apt-get update

    1. davidteo Avatar
      davidteo

      oh Turn on the firewall under ubuntu

      ufw allow 10000/tcp
      ufw disable
      ufw enable