<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>webmin centos 7 Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/webmin-centos-7/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Thu, 21 Jun 2018 20:42:30 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>Install Webmin on CentOS / RHEL 7/6 and Fedora 28/27/26/25</title>
		<link>https://www.osradar.com/install-webmin-on-centos-rhel-7-6-and-fedora-28-27-26-25/</link>
					<comments>https://www.osradar.com/install-webmin-on-centos-rhel-7-6-and-fedora-28-27-26-25/#comments</comments>
		
		<dc:creator><![CDATA[Mel]]></dc:creator>
		<pubDate>Wed, 09 May 2018 07:04:29 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[webmin centos 7]]></category>
		<category><![CDATA[webmin Fedora 28]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=2959</guid>

					<description><![CDATA[<p>Webmin is a web-based interface for system administration for Linux-based servers. It’s one of the most popular open source hosting control panels. Webmin is largely based on Perl, running as its own process and web server. It defaults TCP port  is 10000 , and can be configured to use SSL if OpenSSL is installed with [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-webmin-on-centos-rhel-7-6-and-fedora-28-27-26-25/">Install Webmin on CentOS / RHEL 7/6 and Fedora 28/27/26/25</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Webmin is a web-based interface for system administration for Linux-based servers. It’s one of the most popular open source hosting control panels. Webmin is largely based on Perl, running as its own process and web server. It defaults TCP port  is 10000 , and can be configured to use SSL if OpenSSL is installed with additional required Perl Modules. Installing Webmin on CentOS 7, its really an easy solution, just follow my steps bellow.</p>
<p>How to Install Webmin on CentOS / RHEL 7/6 and Fedora 28/27/26/25?</p>
<h3><strong>1-Please  Update  your  System :</strong></h3>
<pre>yum  update -y</pre>
<h3><strong>2-Install Webmin Manually</strong></h3>
<p>From <a href="http://www.webmin.com/download.html">Webmin Download page</a>  you can get the  RPM package. use wget command  to get the  package</p>
<p>wget https://prdownloads.sourceforge.net/webadmin/webmin-1.881-1.noarch.rpm</p>
<p>you need  some extra  rpms that you need to install beside that .</p>
<pre> yum -y install perl perl-Net-SSLeay openssl perl-IO-Tty</pre>
<p><strong>Then  install webmin:</strong></p>
<p>rpm -U webmin-1.881-1.noarch.rpm</p>
<h3><strong>3-Install Via webmin repo</strong></h3>
<pre>[Webmin]
name=Webmin Distribution Neutral
#baseurl=http://download.webmin.com/download/yum
mirrorlist=http://download.webmin.com/download/yum/mirrorlist
enabled=1</pre>
<p>Then, fetch and install the GPG key which is used to sign the Webmin packages:</p>
<pre># wget http://www.webmin.com/jcameron-key.asc
# rpm --import jcameron-key.asc</pre>
<p>Finally, install Webmin and all the dependencies using the following command:</p>
<pre># yum install webmin</pre>
<h2><img loading="lazy" class="alignnone size-full wp-image-2960" src="https://www.osradar.com/wp-content/uploads/2018/05/webmin1.png" alt="" width="1713" height="269" srcset="https://www.osradar.com/wp-content/uploads/2018/05/webmin1.png 1713w, https://www.osradar.com/wp-content/uploads/2018/05/webmin1-300x47.png 300w, https://www.osradar.com/wp-content/uploads/2018/05/webmin1-768x121.png 768w, https://www.osradar.com/wp-content/uploads/2018/05/webmin1-1024x161.png 1024w, https://www.osradar.com/wp-content/uploads/2018/05/webmin1-696x109.png 696w, https://www.osradar.com/wp-content/uploads/2018/05/webmin1-1068x168.png 1068w" sizes="(max-width: 1713px) 100vw, 1713px" /></h2>
<h3><strong>4-Start Webmin and enable it on system boot</strong></h3>
<p>To start Webmin, you can use the following command:</p>
<pre># service webmin start</pre>
<p>To enable Webmin on system boot use the following command:</p>
<pre># chkconfig webmin on</pre>
<p>&nbsp;</p>
<p><strong>Check  if the service is  running</strong></p>
<pre>[root@centos7a ~]# service webmin status 
Webmin (pid 2472) is running</pre>
<p>and  port 10 000 listening</p>
<pre>[root@centos7a ~]# netstat -plunt | grep 10000
tcp 0 0 0.0.0.0:10000 0.0.0.0:* LISTEN 2472/perl 
udp 0 0 0.0.0.0:10000 0.0.0.0:* 2472/perl 
[root@centos7a ~]#</pre>
<p><strong>Allow the webmin  behind a firewall</strong></p>
<pre>firewall-cmd –permanent –zone=public –add-port=10000/tcp
firewall-cmd –reload</pre>
<h3><strong>5-Access Webmin Console</strong></h3>
<p>Please  join https://ip:10000</p>
<p>By default, Webmin uses a self-signed SSL certificate so your web browser will warn you that the connection is not secure. You can accept the self-signed SSL certificate and proceed to the log in screen.</p>
<p>you can login with root or with user with sudo wrights</p>
<p><img loading="lazy" class="alignnone size-full wp-image-2969" src="https://www.osradar.com/wp-content/uploads/2018/05/webmin2.png" alt="" width="975" height="674" srcset="https://www.osradar.com/wp-content/uploads/2018/05/webmin2.png 975w, https://www.osradar.com/wp-content/uploads/2018/05/webmin2-300x207.png 300w, https://www.osradar.com/wp-content/uploads/2018/05/webmin2-768x531.png 768w, https://www.osradar.com/wp-content/uploads/2018/05/webmin2-100x70.png 100w, https://www.osradar.com/wp-content/uploads/2018/05/webmin2-218x150.png 218w, https://www.osradar.com/wp-content/uploads/2018/05/webmin2-696x481.png 696w, https://www.osradar.com/wp-content/uploads/2018/05/webmin2-608x420.png 608w" sizes="(max-width: 975px) 100vw, 975px" /></p>
<p><img loading="lazy" class="alignnone size-full wp-image-2970" src="https://www.osradar.com/wp-content/uploads/2018/05/webmin3.png" alt="" width="1834" height="791" srcset="https://www.osradar.com/wp-content/uploads/2018/05/webmin3.png 1834w, https://www.osradar.com/wp-content/uploads/2018/05/webmin3-300x129.png 300w, https://www.osradar.com/wp-content/uploads/2018/05/webmin3-768x331.png 768w, https://www.osradar.com/wp-content/uploads/2018/05/webmin3-1024x442.png 1024w, https://www.osradar.com/wp-content/uploads/2018/05/webmin3-696x300.png 696w, https://www.osradar.com/wp-content/uploads/2018/05/webmin3-1068x461.png 1068w, https://www.osradar.com/wp-content/uploads/2018/05/webmin3-974x420.png 974w" sizes="(max-width: 1834px) 100vw, 1834px" /></p>
<p>I think the same method should work for Redhat /Feodora 26/27/28  and Oracle Linux .</p>
<p>Please  Enjoy</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-webmin-on-centos-rhel-7-6-and-fedora-28-27-26-25/">Install Webmin on CentOS / RHEL 7/6 and Fedora 28/27/26/25</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-webmin-on-centos-rhel-7-6-and-fedora-28-27-26-25/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
