Webmin is a web-based system administration tool that can be used to manage Unix systems. Instead of using the command line or terminal console, one can install Webmin to manage various aspect of the system, including creating and managing user accounts, services and installing tools and modules.
For some new users who are not comfortable using the command console, using Webmin instead may get them started easily and painlessly.
Webmin also allows administrators to manage their servers remotely, from a console using any modern web browser. It’s that simple. Just install, open a web browser and begin managing your systems.
This brief tutorial is going to show you how to install and use Webmin on Ubuntu servers.
To get started, you should already have root access to the server. You’ll need root permissions to install software and packages on Ubuntu systems. When you’re ready, continue below to get started.
Logon to your Ubuntu server via SSH or terminal console. Once there, run the commands below to create a separate repository file for Webmin. To do that, run the commands below.
sudo vi /etc/apt/sources.lists.d/webmin.list
Next, copy and paste the lines below into the file and save the file. The lines below provide tools and packages to install Webmin. There are other methods one can use, but this might be the easiest.
deb http://download.webmin.com/download/repository sarge contrib
deb http://webmin.mirror.somersettechsolutions.co.uk/repository sarge contrib
After saving the file, use the commands below to download and install the repository key you’ve added above. Doing this allows Ubuntu to trust the above repository.
wget -q http://www.webmin.com/jcameron-key.asc -O- | sudo apt-key add -
After that, run the commands below to update your system. The update command tell Ubuntu to fetch all installed repositories on the system to look for updated packages and software.
sudo apt-get update
If there are newer packages available, Ubuntu then prompts you if you wish to upgrade the installed packages to the newer versions available through the repositories.
After running the update, command, run the commands below to install Webmin
sudo apt-get install webmin
When prompted, type y to accept and begin the installation.
After the installation, open any modern web browser and browse to the server using its IP address or hostname. The default port number the Webmin communicates on is 1000.
So type https://server_IP_address:10000 to access Webmin.
Because the certificate being is self-signed, you’ll be prompted with a warning that the certificate may not be trusted. Go ahead and proceed. When prompted with a logon screen, enter your username and password to sign in.
That’s it! Webmin is installed and ready to sue. Browse around and take notes of all the links on the right.
The System Information page shows you the overall system’s resources and other information. You can also view available updates from this page. Again, you can manage almost every aspect of your system from Webmin.
To create user, go to the Users and Groups page. There you’ll be able to easily create and manage user accounts.
So, look around and explore the various features and services that are available through Webmin and begin setting up and customizing your systems.
There are many functions available through Webmin.. from restart servers and servers to managing services and VPN to using CD burner and printers and more. It’s just a wonderful software to have installed.
Enjoy!
Frequently Asked Questions
How to manage user accounts using Webmin on Ubuntu 14.10?
You can manage user accounts on Ubuntu 14.10 using Webmin by navigating to the Users and Groups section within the Webmin interface. From there, you can create, edit, or delete user accounts easily.
Can Webmin on Ubuntu 14.10 help in installing new services?
Yes, Webmin can assist in installing new services on Ubuntu 14.10. You can use the Webmin interface to browse available services and install them with just a few clicks.
Is it possible to manage system tools and modules with Webmin on Ubuntu 14.10?
Absolutely, Webmin allows you to manage system tools and modules on Ubuntu 14.10. You can easily install, update, or remove tools and modules through the Webmin dashboard.
How does Webmin on Ubuntu 14.10 simplify system administration for new users?
Webmin simplifies system administration for new users by providing a user-friendly web-based interface to manage Unix systems without the need for extensive command line knowledge. It enables beginners to perform system tasks easily.
Can Webmin be used for remote server management on Ubuntu 14.10?
Yes, Webmin enables administrators to manage their servers remotely on Ubuntu 14.10. By accessing Webmin through a web browser, administrators can perform system administration tasks from anywhere.
What are the prerequisites for installing Webmin on Ubuntu 14.10?
To install Webmin on Ubuntu 14.10, you need root access to the server. Root permissions are necessary for installing software and packages on Ubuntu systems.
How to add Webmin repository on Ubuntu 14.10?
To add the Webmin repository on Ubuntu 14.10, you can create a separate repository file using the command sudo vi /etc/apt/sources.lists.d/webmin.list and add the repository URLs provided in the article.
What is the purpose of the jcameron-key.asc file in Webmin installation on Ubuntu 14.10?
The jcameron-key.asc file is used to download and install the repository key needed for Webmin installation on Ubuntu 14.10. It allows Ubuntu to trust the Webmin repository.