Sponsored Link
We have already discusses about how to install ubuntu 16.04 LAMP server
Now you need to install webmin from APT repository
sudo sh -c ‘echo "deb http://download.webmin.com/download/repository sarge contrib" > /etc/apt/sources.list.d/webmin.list'
wget -qO -- http://www.webmin.com/jcameron-key.asc | sudo apt-key add --
sudo apt-get update
sudo apt-get install webmin
Access webmin
Now you need to go to https://serverip:10000
Ubuntu in particular don't allow logins by the root user by default. However, the user created at system installation time can use sudo to switch to root. Webmin will allow any user who has this sudo capability to login with full root privileges.
Once you logged in you should see similar to the following screen
Thanks for the howto! Nice to get upgrades via the apt. I had a little snag though. This line did not work for me:
wget -qO — http://www.webmin.com/jcameron-key.asc | sudo apt-key add —
I changed it to:
wget -qO – http://www.webmin.com/jcameron-key.asc | sudo apt-key add –
and now it worked.
I used to run webmin without problem in 14.10.
I moved to 16.04 but I am unable to get webmin working.
Everything is correct in installation, but, under the browser I get errors like “ERR_SSL_PROTOCOL_ERROR”
or
“An error occurred during a connection to localhost:10000. SSL received a record that exceeded the maximum permissible length. Error code: SSL_ERROR_RX_RECORD_TOO_LONG”
depending on the browser.
Thanks for your help
Does work sadly:
gpg: no valid OpenPGP data found.
When running
wget -qO — http://www.webmin.com/jcameron-key.asc | sudo apt-key add —
Jamie run
wget -q http://www.webmin.com/jcameron-key.asc -O- | sudo apt-key add –
and this will get the key.
In my case I had to start webmin server to be able to acces it in the browser for the first time with the command:
/etc/webmin/start
Whats the command to actually open webmin or how to open browser or point https://the_ip:10000
All the tutorial seems to stop there…
the_ip : This is your server ip address for example if your server ip address 192.168.2.10
you can access https://192.168.2.10:10000