【问题标题】:VPS, Apache MySql and phpMyadmin errorVPS、Apache MySql 和 phpMyadmin 错误
【发布时间】:2013-10-11 19:54:04
【问题描述】:

最近我配置了VPS,但是效果不好。

什么问题?我使用 yum install 安装了 Apache2、MySql、PHP,我从源代码安装了 phpmyadmin,基本上我按照在线教程进行了编译。

当我尝试让 phpmyadmin 在 ssh 上工作时,我输入 'service httpd restart' 它给了我这个错误

[root@localhost ~]# service httpd restart
Stopping httpd:                                            [  OK  ]
Starting httpd: [Fri Oct 04 13:43:08 2013] [warn] The Alias directive in /etc/httpd/conf.d/phpmyadmin.conf at line 9 will probably never match because it overlaps an earlier Alias.
[Fri Oct 04 13:43:08 2013] [warn] The Alias directive in /etc/httpd/conf.d/phpmyadmin.conf at line 10 will probably never match because it overlaps an earlier Alias.

PHP 版本

PHP 5.5.4 (cli) (built: Sep 19 2013 15:01:01)

MYSQL 版本

mysql  Ver 14.14 Distrib 5.5.34, for Linux (i686) using readline 5.1

当我尝试访问 phpmyadmin 时,我不知道如何修复它,它给了我 403 错误

希望有人能帮我解决一下

服务器上安装了centos 5.8

提前致谢:)

编辑:

phpmyadmin.conf

#
# Web application to manage MySQL
#
#<Directory "/usr/share/phpmyadmin">
# Order Deny,Allow
# Deny from all
# Allow from 127.0.0.1
#</Directory>
Alias /phpmyadmin /usr/share/phpmyadmin
Alias /phpMyAdmin /usr/share/phpmyadmin
Alias /mysqladmin /usr/share/phpmyadmin

【问题讨论】:

  • 这应该移到 serverfault 这不是编程问题
  • 查看文件/etc/httpd/conf.d/phpmyadmin.conf,尤其是第9行和第10行。那里的别名和前8行的别名一样吗?
  • 我编辑的帖子你可以看到 phpmyadmin.conf 的样子
  • 检查 .htaccess 文件和 httpd.conf 或 httpd/conf 中的任何内容,以确保这些别名不存在

标签: php mysql apache phpmyadmin


【解决方案1】:

这个问题在我写作时已有 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 使其保持最新状态,然后您可以让人们提供帮助,它会正常运行

【讨论】:

    【解决方案2】:

    我想知道你为什么不直接从存储库安装 phpmyadmin?

    yum install phpmyadmin
    

    问候

    【讨论】:

    • 因为我每次尝试安装时都会出错,无法正常工作我不知道为什么它总是失败如果你有好的 tut 怎么做请给我链接。
    猜你喜欢
    • 2014-02-25
    • 2019-10-09
    • 1970-01-01
    • 2018-01-21
    • 2011-01-23
    • 2012-05-06
    • 2017-06-21
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多