<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments on: How to Install LAMP Server on RHEL, CentOS, Rocky &#038; AlmaLinux	</title>
	<atom:link href="https://www.tecmint.com/install-lamp-server-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/install-lamp-server-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Wed, 05 Apr 2023 08:55:30 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Tolga		</title>
		<link>https://www.tecmint.com/install-lamp-server-linux/comment-page-1/#comment-1100476</link>

		<dc:creator><![CDATA[Tolga]]></dc:creator>
		<pubDate>Mon, 11 Feb 2019 12:29:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=7965#comment-1100476</guid>

					<description><![CDATA[Thank you very much for your informative article on LAMP setup..]]></description>
			<content:encoded><![CDATA[<p>Thank you very much for your informative article on LAMP setup..</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Kyoungrae		</title>
		<link>https://www.tecmint.com/install-lamp-server-linux/comment-page-1/#comment-1097824</link>

		<dc:creator><![CDATA[Kyoungrae]]></dc:creator>
		<pubDate>Mon, 28 Jan 2019 12:56:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=7965#comment-1097824</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-lamp-server-linux/comment-page-1/#comment-474048&quot;&gt;lester&lt;/a&gt;.

It&#039;s really late to answer this but I think I would let you know.
&lt;code&gt;
# yum install http://ftp.tu-chemnitz.de/pub/linux/dag/redhat/el7/en/x86_64/rpmforge/RPMS/rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm
&lt;/code&gt;
You can get past right this way.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-lamp-server-linux/comment-page-1/#comment-474048">lester</a>.</p>
<p>It&#8217;s really late to answer this but I think I would let you know.<br />
<code><br />
# yum install http://ftp.tu-chemnitz.de/pub/linux/dag/redhat/el7/en/x86_64/rpmforge/RPMS/rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm<br />
</code><br />
You can get past right this way.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/install-lamp-server-linux/comment-page-1/#comment-1089460</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Wed, 02 Jan 2019 07:36:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=7965#comment-1089460</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-lamp-server-linux/comment-page-1/#comment-1087667&quot;&gt;Israrul Haque&lt;/a&gt;.

@Israrul,

How to configure PhpMyAdmin to allow access to specific IP address.

Open &lt;strong&gt;/etc/httpd/conf.d/phpMyAdmin.conf&lt;/strong&gt; file and edit &lt;code&gt;Require ip&amp; Allow from&lt;/code&gt; lines as shown in the following example. 

Here is what phpMyAdmin.conf will look like with the added access rules.
&lt;pre&gt;
&#060;Directory /usr/share/phpMyAdmin/&#062;

&#060;IfModule mod_authz_core.c&#062;
# Apache 2.4
&#060;RequireAny&#062;
Require ip 127.0.0.1
Require ip ::1
&lt;strong&gt;# Example office IP
Require ip 192.168.0.100&lt;/strong&gt;
&#060;/RequireAny&#062;

&#060;/IfModule&#062;
&#060;IfModule !mod_authz_core.c&#062;
# Apache 2.2
Order Deny,Allow
Deny from All
Allow from 127.0.0.1
Allow from ::1
&lt;strong&gt;# Example home IP
Allow from 192.168.0.100&lt;/strong&gt;
&#060;/IfModule&#062;

&#060;/Directory&#062;
&#060;Directory /usr/share/phpMyAdmin/setup/&#062;
&#060;IfModule mod_authz_core.c&#062;
# Apache 2.4
&#060;RequireAny&#062;
Require ip 127.0.0.1
Require ip ::1
&lt;strong&gt;# Example home IP
Require ip 192.168.0.100&lt;/strong&gt;
&#060;/RequireAny&#062;

&#060;/IfModule&#062;
&#060;IfModule !mod_authz_core.c&#062;
# Apache 2.2
Order Deny,Allow
Deny from All
Allow from 127.0.0.1
Allow from ::1
&lt;strong&gt;# Example home IP
Allow from 192.168.0.100&lt;/strong&gt;
&#060;/IfModule&#062;
&#060;/Directory&#062;
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-lamp-server-linux/comment-page-1/#comment-1087667">Israrul Haque</a>.</p>
<p>@Israrul,</p>
<p>How to configure PhpMyAdmin to allow access to specific IP address.</p>
<p>Open <strong>/etc/httpd/conf.d/phpMyAdmin.conf</strong> file and edit <code>Require ip&#038; Allow from</code> lines as shown in the following example. </p>
<p>Here is what phpMyAdmin.conf will look like with the added access rules.</p>
<pre>
&lt;Directory /usr/share/phpMyAdmin/&gt;

&lt;IfModule mod_authz_core.c&gt;
# Apache 2.4
&lt;RequireAny&gt;
Require ip 127.0.0.1
Require ip ::1
<strong># Example office IP
Require ip 192.168.0.100</strong>
&lt;/RequireAny&gt;

&lt;/IfModule&gt;
&lt;IfModule !mod_authz_core.c&gt;
# Apache 2.2
Order Deny,Allow
Deny from All
Allow from 127.0.0.1
Allow from ::1
<strong># Example home IP
Allow from 192.168.0.100</strong>
&lt;/IfModule&gt;

&lt;/Directory&gt;
&lt;Directory /usr/share/phpMyAdmin/setup/&gt;
&lt;IfModule mod_authz_core.c&gt;
# Apache 2.4
&lt;RequireAny&gt;
Require ip 127.0.0.1
Require ip ::1
<strong># Example home IP
Require ip 192.168.0.100</strong>
&lt;/RequireAny&gt;

&lt;/IfModule&gt;
&lt;IfModule !mod_authz_core.c&gt;
# Apache 2.2
Order Deny,Allow
Deny from All
Allow from 127.0.0.1
Allow from ::1
<strong># Example home IP
Allow from 192.168.0.100</strong>
&lt;/IfModule&gt;
&lt;/Directory&gt;
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Israrul Haque		</title>
		<link>https://www.tecmint.com/install-lamp-server-linux/comment-page-1/#comment-1087667</link>

		<dc:creator><![CDATA[Israrul Haque]]></dc:creator>
		<pubDate>Sat, 29 Dec 2018 08:46:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=7965#comment-1087667</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-lamp-server-linux/comment-page-1/#comment-375406&quot;&gt;Matei Cezar&lt;/a&gt;.

I tried to restrict phpmyadmin access to a particular ip address in httpd-2.4 but still it is not working]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-lamp-server-linux/comment-page-1/#comment-375406">Matei Cezar</a>.</p>
<p>I tried to restrict phpmyadmin access to a particular ip address in httpd-2.4 but still it is not working</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Martin Skorvald		</title>
		<link>https://www.tecmint.com/install-lamp-server-linux/comment-page-1/#comment-841542</link>

		<dc:creator><![CDATA[Martin Skorvald]]></dc:creator>
		<pubDate>Fri, 25 Nov 2016 18:23:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=7965#comment-841542</guid>

					<description><![CDATA[Hi
One more thing to note:

rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm
[root@centos yum-root-bB6l9i]# pwd
/var/tmp/yum-root-bB6l9i
 
//marsk]]></description>
			<content:encoded><![CDATA[<p>Hi<br />
One more thing to note:</p>
<p>rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm<br />
[root@centos yum-root-bB6l9i]# pwd<br />
/var/tmp/yum-root-bB6l9i</p>
<p>//marsk</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
