0

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

2 回答 2

2

这个问题在我写作时已有 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>

不要为自己制作一个科学怪人服务器而感到尴尬——在 CentOS 7 下制作一个当前服务器并用 yum 保持它是最新的,然后你可以让人们可能提供帮助,它会正常运行

于 2017-11-05T00:47:40.257 回答
1

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

yum install phpmyadmin

问候

于 2013-10-04T18:03:19.007 回答