这个问题在我写作时已有 4 年历史了——我一开始并没有注意到这一点——但是对于那些出现的人来说。 . .像我一样迟到
任何人都需要从安装 CentOS 7 开始 - 如果他们没有任何托管公司,则可以摆脱或放弃它。 CentOS 5.x 的更新生命期已于 2017 年 3 月 31 日结束
不要从源代码构建 - 配置 REMI 存储库 - 它具有最新版本的 phpmyadmin 并将 php 安装配置为 CentOS 标准。在 yum 更新和正确的 epel 版本之间 - 安装 phpmyadmin 很简单。
请参阅https://rpms.remirepo.net/wizard/ Remi 也是 CentOS.org 的定期支持贡献者 - 但没有人会帮助 CentOS 5.8,它太旧了,而且大多数人在撰写本文时也不会帮助 CentOS 6 - 要么。如果您从 CentOS 6 开始,则没有“升级”路径,您必须从 CentOS 7 开始,然后从那里开始有升级路径。
一个更好的 Web 服务器来自 codeit - 它具有 http2,并且比 redhat 版本更新更频繁,它是 Apache 的 etc/httpd 的 Red Hat / Centos 文件版本。它会让您在 SSLLABS.com 上获得“A”。
CentOS 现在还有 MariaDB 而不是 MySQL - 将是 10.1.xx 或 10.2.xx - 不是 5.xx 升级到 10.2 - 它具有动态 Innodb 池大小并在更小的内存占用中启动。
然后获取一个像 Webmin 这样的面板,用于在服务器本身上进行操作,如果您使用 Windows 客户端访问它,则使用 WinSCP。一旦你得到它的配置,Webmin 将自动保持你的系统健全和最新。 Webmin 也有一个可以配置的 yum 存储库。有一些回购要远离 => 见 https://wiki.centos.org/AdditionalResources/Repositories
今天没有人为自己做任何事,甚至尝试运行 CentOS 6
所以要回答任何迟到者的问题 - 这是一个好的 phpmyadmin conf 文件的样子,它会锁定除了你进入的网络之外的任何人 - 如果你在 /etc/httpd/conf.d 中有一个正确设置的 Red Hat 风格的 CentOS 服务器 - 但是“apache2 不是众所周知的 - 所以听起来你可能已经制作了一个科学怪人服务器。错误消息告诉我。某个别名已经加载。试着留下远离自己编译任何东西 - 在 CentOS 上 - 大多数时候 RPM 或 repo 都有文件 - 在网上搜索 rpm - 然后看看是否有可以配置的 yum repo
remi phpmyadmin 带有一个很好的 conf 文件,如下面的 - 但没有 IP 要求语句
如果你在网上看到一些东西——作为教程,它不适用于 CentOS 和你的版本——移动一个并且不要尝试使用它。
# phpMyAdmin - Web based MySQL browser written in php
#
# Allows only localhost by default
#
# But allowing phpMyAdmin to anyone other than localhost should be considered
# dangerous unless properly secured by SSL
Alias /phpMyAdmin /usr/share/phpMyAdmin
Alias /phpmyadmin /usr/share/phpMyAdmin
<Directory /usr/share/phpMyAdmin/>
AddDefaultCharset UTF-8
<IfModule mod_authz_core.c>
# Apache 2.4
# Require local
<RequireAny>
Require all denied
Require ip (your ip or subnet - it will take ranges like xxc.xxx.0.0/16)
Require ip 127.0.0.1
Require ip ::1
</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
</IfModule>
</Directory>
<Directory /usr/share/phpMyAdmin/setup/>
<IfModule mod_authz_core.c>
# Apache 2.4
# Require local
<RequireAny>
Require all denied
Require ip (your ip or subnet - it will tke ranges like xxc.xxx.0.0/16)
Require ip 127.0.0.1
Require ip ::1
</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
</IfModule>
</Directory>
# These directories do not require access over HTTP - taken from the original
# phpMyAdmin upstream tarball
#
<Directory /usr/share/phpMyAdmin/libraries/>
Order Deny,Allow
Deny from All
Allow from None
</Directory>
<Directory /usr/share/phpMyAdmin/setup/lib/>
Order Deny,Allow
Deny from All
Allow from None
</Directory>
<Directory /usr/share/phpMyAdmin/setup/frames/>
Order Deny,Allow
Deny from All
Allow from None
</Directory>
# This configuration prevents mod_security at phpMyAdmin directories from
# filtering SQL etc. This may break your mod_security implementation.
#
<IfModule mod_security.c>
<Directory /usr/share/phpMyAdmin/>
SecRuleInheritance Off
</Directory>
</IfModule>
不要为自己制作 Frankenstein 服务器而感到尴尬 - 在 CentOS 7 下制作一个当前服务器并使用 yum 使其保持最新状态,然后您可以让人们提供帮助,它会正常运行