php - VPS、Apache MySql 和 phpMyadmin 错误

标签 php mysql apache phpmyadmin

最近我配置了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

最佳答案

这个问题在我写作时已有 4 年历史了 - 一开始我没有注意到 - 但对于那些出现的人来说。 . .像我一样迟到

任何人都需要从安装 CentOS 7 开始——如果他们没有 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 存储库。有一些 repos 要远离 => 请参阅 https://wiki.centos.org/AdditionalResources/Repositories

今天没有人为自己做任何事,甚至尝试为此运行 CentOS 6

因此,为任何迟到的人回答这个问题 - 这是一个好的 phpmyadmin conf 文件的样子,它会锁定除你进入的网络之外的任何人 - 它会在/etc/httpd/conf.d 中,如果你有一个正确设置的 Red Hat 风格的 CentOS 服务器 - 但“apache2 不是所谓的 - 所以听起来你可能已经制作了一个 Frankenstein 服务器。错误消息告诉我。某个地方已经加载了一个别名。试着留下来不要自己编译任何东西 - 在 CentOS 上 - 大多数时候 RPM 或 repo 都有文件 - 在网上搜索 rpm - 然后看看是否有你可以配置的 yum repo

remi phpmyadmin 带有一个很好的 conf 文件,如下所示 - 但没有 IP require 语句

如果你在网上看到一些东西——作为教程,它不适用于 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>

不要为自己制作一个弗兰肯斯坦服务器而感到尴尬 - 在 CentOS 7 下制作一个当前服务器并使用 yum 保持它的最新状态,然后你可以获得可能的帮助并且它会正常运行

关于php - VPS、Apache MySql 和 phpMyadmin 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19187615/

相关文章:

c# - 在 C# 中使用 Visual Studio 通过 mySQL 将数据插入数据库

php - MYSQL 选择与数字相同的列名作为别名不起作用

c++ - 配置 Eclipse C++ 以构建 Apache HTTP 模块

linux - 执行不带扩展名的 CGI 文件

php - 如何将带有细空格的数字格式化为千位分隔符?

php - 使用 Javascript/jQuery 获取基于段的 URL 中的查询字符串

php - 在类中使用数组遍历

php - MySQL Workbench 未安装在 ubuntu 上

php - SQL如何根据ID限制为一条记录

php - 在 HHVM + Apache + fastCGI 上部署 Symfony2