Created
April 4, 2020 06:05
-
-
Save afahitech/b72e4896debd643a99ddfe3928244276 to your computer and use it in GitHub Desktop.
How to install webmin on Ubuntu 18.04
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
| # System update | |
| sudo apt update && sudo apt upgrade | |
| sudo apt install software-properties-common apt-transport-https wget | |
| wget -q http://www.webmin.com/jcameron-key.asc -O- | sudo apt-key add - | |
| sudo add-apt-repository "deb [arch=amd64] http://download.webmin.com/download/repository sarge contrib" | |
| # Install webmin | |
| sudo apt install webmin | |
| # Adjust the Firewall | |
| sudo ufw allow 10000/tcp | |
| # Accessing Webmin Web Interface | |
| https://your_server_ip_or_hostname:10000/ | |
| # Upgrading Webmin | |
| sudo apt update && sudo apt upgrade |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment