{"id":3725,"date":"2012-08-02T23:25:41","date_gmt":"2012-08-02T15:25:41","guid":{"rendered":"https:\/\/webhostinggeeks.com\/howto\/?p=3725"},"modified":"2023-06-26T22:36:17","modified_gmt":"2023-06-26T22:36:17","slug":"how-to-setup-webmin-1-590-1-on-centos-6-3-using-rpm","status":"publish","type":"post","link":"https:\/\/webhostinggeeks.com\/howto\/how-to-setup-webmin-1-590-1-on-centos-6-3-using-rpm\/","title":{"rendered":"How to Setup Webmin 1.590-1 on CentOS 6.3 using RPM"},"content":{"rendered":"<p>Webmin is a versatile web-based interface for Linux system administration. With Webmin, you can manage various aspects of your server, such as user accounts, Apache, DNS, and file sharing, all from your browser. This comprehensive guide will walk you through the steps to install Webmin 1.590-1 on CentOS 6.3 using RPM. This process involves downloading the Webmin package, adding the GPG key, installing Webmin, starting the Webmin service, and configuring it to start at boot.<\/p>\n<p>For more insights on the best web servers, you can out our detailed guides on <a href=\"https:\/\/webhostinggeeks.com\/blog\/apache-http-server-explained\/\">Apache<\/a>, <a href=\"https:\/\/webhostinggeeks.com\/blog\/nginx-server-explained\/\">Nginx<\/a>, and <a href=\"https:\/\/webhostinggeeks.com\/blog\/litespeed-web-server-explained\/\">LiteSpeed<\/a>.<\/p>\n<h2>Step 1: Download Webmin<\/h2>\n<p>To begin, you need to download the Webmin package. You can do this by using the wget command followed by the URL of the Webmin RPM file. Here&#8217;s the command you need to run:<\/p>\n<pre>\r\nwget http:\/\/prdownloads.sourceforge.net\/webadmin\/webmin-1.590-1.noarch.rpm\r\n<\/pre>\n<p>Example:<\/p>\n<pre>[root@centos63 ~]# wget http:\/\/prdownloads.sourceforge.net\/webadmin\/webmin-1.590-1.noarch.rpm\r\n--2012-08-02 22:49:07--  http:\/\/prdownloads.sourceforge.net\/webadmin\/webmin-1.590-1.noarch.rpm\r\nResolving prdownloads.sourceforge.net... 216.34.181.59\r\nConnecting to prdownloads.sourceforge.net|216.34.181.59|:80... connected.\r\nHTTP request sent, awaiting response... 301 Moved Permanently\r\nLocation: http:\/\/downloads.sourceforge.net\/project\/webadmin\/webmin\/1.590\/webmin-1.590-1.noarch.rpm [following]\r\n--2012-08-02 22:49:08--  http:\/\/downloads.sourceforge.net\/project\/webadmin\/webmin\/1.590\/webmin-1.590-1.noarch.rpm\r\nResolving downloads.sourceforge.net... 216.34.181.59\r\nReusing existing connection to prdownloads.sourceforge.net:80.\r\nHTTP request sent, awaiting response... 302 Found\r\nLocation: http:\/\/cdnetworks-kr-2.dl.sourceforge.net\/project\/webadmin\/webmin\/1.590\/webmin-1.590-1.noarch.rpm [following]\r\n--2012-08-02 22:49:08--  http:\/\/cdnetworks-kr-2.dl.sourceforge.net\/project\/webadmin\/webmin\/1.590\/webmin-1.590-1.noarch.rpm\r\nResolving cdnetworks-kr-2.dl.sourceforge.net... 211.39.135.163\r\nConnecting to cdnetworks-kr-2.dl.sourceforge.net|211.39.135.163|:80... connected.\r\nHTTP request sent, awaiting response... 200 OK\r\nLength: 18926818 (18M) [application\/x-rpm]\r\nSaving to: \u00e2webmin-1.590-1.noarch.rpm\u00e2\r\n\r\n100%[==========================================================&gt;] 18,926,818  72.2K\/s   in 6m 28s\r\n\r\n2012-08-02 22:55:37 (47.7 KB\/s) - \u00e2webmin-1.590-1.noarch.rpm\u00e2<\/pre>\n<h2>Step 2: Add the GPG Key<\/h2>\n<p>Next, you need to add the GPG key for Webmin. This can be done by using the rpm command with the &#8211;import option followed by the URL of the GPG key. Here&#8217;s the command you need to run:<\/p>\n<pre>\r\nrpm --import http:\/\/www.webmin.com\/jcameron-key.asc\r\n<\/pre>\n<h2>Step 3: Install Webmin<\/h2>\n<p>Now that you&#8217;ve downloaded the Webmin package and added the GPG key, you can proceed to install Webmin. This can be done by using the rpm command with the -Uvh option followed by the name of the Webmin RPM file. Here&#8217;s the command you need to run:<\/p>\n<pre>\r\nrpm -Uvh webmin-1.590-1.noarch.rpm\r\n<\/pre>\n<p>After running this command, you should see a message indicating that the Webmin installation is complete.<\/p>\n<pre>\r\n[root@centos63 ~]# rpm -Uvh webmin-1.590-1.noarch.rpm\r\nPreparing...                ########################################### [100%]\r\nOperating system is CentOS Linux\r\n   1:webmin                 ########################################### [100%]\r\nWebmin install complete. You can now login to http:\/\/centos63.ehowstuff.local:10000\/\r\nas root with your root password.\r\n<\/pre>\n<h2>Step 4: Start Webmin Service and Check Webmin Status<\/h2>\n<p>Once Webmin is installed, you need to start the Webmin service. You can do this by running the following command:<\/p>\n<pre>\r\n\/etc\/init.d\/webmin start\r\n<\/pre>\n<p>To check the status of the Webmin service, you can run the following command:<\/p>\n<pre>\r\n\/etc\/init.d\/webmin status\r\n<\/pre>\n<p>If the Webmin service is running, you should see a message indicating that Webmin is running.<\/p>\n<pre>\r\n[root@centos63 ~]# \/etc\/init.d\/webmin status\r\nWebmin (pid 2676) is running\r\n<\/pre>\n<h2>Step 5: Configure Webmin Service to Start at Boot<\/h2>\n<p>To ensure that the Webmin service starts automatically when your server boots, you need to configure it to start at boot. This can be done by using the chkconfig command followed by the name of the Webmin service and the word &#8220;on&#8221;. Here&#8217;s the command you need to run:<\/p>\n<pre>\r\nchkconfig webmin on\r\n<\/pre>\n<h2>Step 6: Log in to the Webmin Web Interface<\/h2>\n<p>With Webmin installed and running, you can now log in to the Webmin web interface. To do this, open your web browser and navigate to the following URL:<\/p>\n<pre>\r\nhttp:\/\/youripaddress:10000\r\n<\/pre>\n<p>Replace &#8220;youripaddress&#8221; with the actual IP address of your server. Once you&#8217;ve logged in, you can start managing your server using Webmin.<\/p>\n<h2>Commands Mentioned<\/h2>\n<ul>\n<li><span class=\"fw-bold\">wget http:\/\/prdownloads.sourceforge.net\/webadmin\/webmin-1.590-1.noarch.rpm<\/span> \u2013 This command downloads the Webmin package.<\/li>\n<li><span class=\"fw-bold\">rpm &#8211;import http:\/\/www.webmin.com\/jcameron-key.asc<\/span> \u2013 This command adds the GPG key for Webmin.<\/li>\n<li><span class=\"fw-bold\">rpm -Uvh webmin-1.590-1.noarch.rpm<\/span> \u2013 This command installs Webmin.<\/li>\n<li><span class=\"fw-bold\">\/etc\/init.d\/webmin start<\/span> \u2013 This command starts the Webmin service.<\/li>\n<li><span class=\"fw-bold\">\/etc\/init.d\/webmin status<\/span> \u2013 This command checks the status of the Webmin service.<\/li>\n<li><span class=\"fw-bold\">chkconfig webmin on<\/span> \u2013 This command configures the Webmin service to start at boot.<\/li>\n<\/ul>\n<h2>Conclusion<\/h2>\n<p>Webmin is a powerful tool for managing your Linux server through a web-based interface. This guide has walked you through the process of installing Webmin on CentOS 6.3 using RPM. By following these steps, you can set up Webmin and start managing your server more efficiently.<\/p>\n<p>Remember, if you&#8217;re looking for more information on server management and hosting options, you can visit our pages on <a href=\"https:\/\/webhostinggeeks.com\/blog\/what-is-dedicated-server-hosting\/\">dedicated server<\/a>, <a href=\"https:\/\/webhostinggeeks.com\/blog\/what-is-vps-hosting\/\">VPS server<\/a>, <a href=\"https:\/\/webhostinggeeks.com\/blog\/what-is-cloud-hosting\/\">cloud hosting<\/a>, and <a href=\"https:\/\/webhostinggeeks.com\/blog\/what-is-shared-hosting\/\">shared hosting<\/a>.<\/p>\n<p>We hope this guide has been helpful. If you have any further questions, don&#8217;t hesitate to reach out.<\/p>\n<h2>FAQ<\/h2>\n<ol itemscope itemtype=\"https:\/\/schema.org\/FAQPage\">\n<li itemscope itemprop=\"mainEntity\" itemtype=\"https:\/\/schema.org\/Question\">\n<p class=\"fw-bold\" itemprop=\"name\">What is Webmin?<\/p>\n<p itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n                <span itemprop=\"text\">Webmin is a web-based interface for Linux system administration. It allows you to manage various aspects of your server, such as user accounts, Apache, DNS, and file sharing, all from your browser.<\/span>\n            <\/p>\n<\/li>\n<li itemscope itemprop=\"mainEntity\" itemtype=\"https:\/\/schema.org\/Question\">\n<p class=\"fw-bold\" itemprop=\"name\">How do I install Webmin?<\/p>\n<p itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n                <span itemprop=\"text\">You can install Webmin by downloading the Webmin package, adding the GPG key, and then using the rpm command to install the package. After installation, you need to start the Webmin service and configure it to start at boot.<\/span>\n            <\/p>\n<\/li>\n<li itemscope itemprop=\"mainEntity\" itemtype=\"https:\/\/schema.org\/Question\">\n<p class=\"fw-bold\" itemprop=\"name\">How do I start the Webmin service?<\/p>\n<p itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n                <span itemprop=\"text\">You can start the Webmin service by running the command \/etc\/init.d\/webmin start.<\/span>\n            <\/p>\n<\/li>\n<li itemscope itemprop=\"mainEntity\" itemtype=\"https:\/\/schema.org\/Question\">\n<p class=\"fw-bold\" itemprop=\"name\">How do I check the status of the Webmin service?<\/p>\n<p itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n                <span itemprop=\"text\">You can check the status of the Webmin service by running the command \/etc\/init.d\/webmin status.<\/span>\n            <\/p>\n<\/li>\n<li itemscope itemprop=\"mainEntity\" itemtype=\"https:\/\/schema.org\/Question\">\n<p class=\"fw-bold\" itemprop=\"name\">How do I configure the Webmin service to start at boot?<\/p>\n<p itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n                <span itemprop=\"text\">You can configure the Webmin service to start at boot by running the command chkconfig webmin on.<\/span>\n            <\/p>\n<\/li>\n<\/ol>\n","protected":false},"excerpt":{"rendered":"<p>Webmin is a versatile web-based interface for Linux system administration. With Webmin, you can manage various aspects of your server, such as user accounts, Apache, DNS, and file sharing, all&#8230;<\/p>\n","protected":false},"author":6,"featured_media":3728,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"wds_primary_category":0,"footnotes":""},"categories":[1091],"tags":[1254,1536,1776,1917,1921],"class_list":["post-3725","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-webmin","tag-centos-6-3","tag-linux","tag-setup-webmin","tag-webmin","tag-webmin-1-590-1"],"_links":{"self":[{"href":"https:\/\/webhostinggeeks.com\/howto\/wp-json\/wp\/v2\/posts\/3725","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webhostinggeeks.com\/howto\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webhostinggeeks.com\/howto\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webhostinggeeks.com\/howto\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/webhostinggeeks.com\/howto\/wp-json\/wp\/v2\/comments?post=3725"}],"version-history":[{"count":0,"href":"https:\/\/webhostinggeeks.com\/howto\/wp-json\/wp\/v2\/posts\/3725\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webhostinggeeks.com\/howto\/wp-json\/wp\/v2\/media\/3728"}],"wp:attachment":[{"href":"https:\/\/webhostinggeeks.com\/howto\/wp-json\/wp\/v2\/media?parent=3725"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webhostinggeeks.com\/howto\/wp-json\/wp\/v2\/categories?post=3725"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webhostinggeeks.com\/howto\/wp-json\/wp\/v2\/tags?post=3725"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}