Daffodil International University

IT Help Desk => Server Management => Topic started by: mahbub-web on April 20, 2013, 11:18:29 PM

Title: How to Install Webmin on a CentOS Server
Post by: mahbub-web on April 20, 2013, 11:18:29 PM
How to Install Webmin on a CentOS Server

Webmin is a free and open source web-based interface for Unix and Linux system administration. It is more powerful and more comprehensive than the typical web-based control panel, and it is also completely free to download and use. You can install Webmin on just about any Linux distribution, BSD variant, or other Unix-like operating system. To install it on CentOS, follow these simple instructions.

1. As root, import the webmin GPG key for secure authentication:

Code: [Select]
rpm –import http://www.webmin.com/jcameron-key.asc
2. Add the Webmin YUM repository to your system:

Code: [Select]
nano /etc/yum.repos.d/webmin.repo
or

Code: [Select]
vi /etc/yum.repos.d/webmin.repo
Add these lines:

Code: [Select]
[Webmin]
name=Webmin Distribution Neutral
baseurl=http://download.webmin.com/download/yum
enabled=1

Save the file and exit your text editor.
3. Install Webmin using your YUM package manager:

Code: [Select]
yum install webmin
4. After it completes the installation process, you should be able to start using it immediately:
Using your ip address or server’s default hostname, open a web browser and point it to port 10000:
For example:

http://192.168.4.50:10000

or

http://www.yourhost.com:10000

If you have local access to your machine, you can also use localhost:

http://localhost:10000

Webmin is very useful for both basic and advanced system administration tasks. It provides graphical tools for many tasks that would normally only be accessible from the command line. It is free and open source, and the project also offers other control panels such as Virtualmin, Usermin, and Cloudmin for virtual hosting, user-level web server management, and cloud server management.

Ref: http://www.serverschool.com/server-software/how-to-install-webmin-on-a-centos-server/