Comments on: How to Install LAMP Server on RHEL, CentOS, Rocky & AlmaLinux https://www.tecmint.com/install-lamp-server-linux/ Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks. Wed, 05 Apr 2023 08:55:30 +0000 hourly 1 By: Tolga https://www.tecmint.com/install-lamp-server-linux/comment-page-1/#comment-1100476 Mon, 11 Feb 2019 12:29:57 +0000 http://www.tecmint.com/?p=7965#comment-1100476 Thank you very much for your informative article on LAMP setup..

]]>
By: Kyoungrae https://www.tecmint.com/install-lamp-server-linux/comment-page-1/#comment-1097824 Mon, 28 Jan 2019 12:56:11 +0000 http://www.tecmint.com/?p=7965#comment-1097824 In reply to lester.

It’s really late to answer this but I think I would let you know.

# 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

You can get past right this way.

]]>
By: Ravi Saive https://www.tecmint.com/install-lamp-server-linux/comment-page-1/#comment-1089460 Wed, 02 Jan 2019 07:36:15 +0000 http://www.tecmint.com/?p=7965#comment-1089460 In reply to Israrul Haque.

@Israrul,

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

Open /etc/httpd/conf.d/phpMyAdmin.conf file and edit Require ip& Allow from lines as shown in the following example.

Here is what phpMyAdmin.conf will look like with the added access rules.

<Directory /usr/share/phpMyAdmin/>

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

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

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

</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order Deny,Allow
Deny from All
Allow from 127.0.0.1
Allow from ::1
# Example home IP
Allow from 192.168.0.100
</IfModule>
</Directory>
]]>
By: Israrul Haque https://www.tecmint.com/install-lamp-server-linux/comment-page-1/#comment-1087667 Sat, 29 Dec 2018 08:46:02 +0000 http://www.tecmint.com/?p=7965#comment-1087667 In reply to Matei Cezar.

I tried to restrict phpmyadmin access to a particular ip address in httpd-2.4 but still it is not working

]]>
By: Martin Skorvald https://www.tecmint.com/install-lamp-server-linux/comment-page-1/#comment-841542 Fri, 25 Nov 2016 18:23:49 +0000 http://www.tecmint.com/?p=7965#comment-841542 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

]]>