6

尝试启动 apache 时

sudo /etc/init.d/apache2 restart

我得到错误

apache2: Syntax error on line 260 of /etc/apache2/apache2.conf: Could not open
configuration file /etc/apache2/conf.d/phpmyadmin.conf: No such file or directory
Action 'configtest' failed.
The Apache error log may have more information.
...fail!

我应该怎么办?在互联网上阅读时,我还应该在 /etc/phpmyadmin 中有一个名为 apache.conf 的文件,但我没有。

4

2 回答 2

12

刚刚在 Debian 7 上遇到了这个问题,安装程序和 dpkg-reconfigure phpmyadmin 创建了一个损坏的链接“/etc/apache2/conf.d/phpmyadmin.conf”,它指向丢失的文件“../../phpmyadmin/apache.conf”。 conf”。不得不从较旧的安装中提取副本,在下面发布。Piotr,你的评论没有用,不要污染。

phpMyAdmin 默认 Apache 配置

Alias /phpmyadmin /usr/share/phpmyadmin

<Directory /usr/share/phpmyadmin>
    Options Indexes FollowSymLinks
    DirectoryIndex index.php

    <IfModule mod_php5.c>
        AddType application/x-httpd-php .php

        php_flag magic_quotes_gpc Off
        php_flag track_vars On
        php_flag register_globals Off
        php_value include_path .
    </IfModule>

</Directory>

# Authorize for setup
<Directory /usr/share/phpmyadmin/setup>
    <IfModule mod_authn_file.c>
    AuthType Basic
    AuthName "phpMyAdmin Setup"
    AuthUserFile /etc/phpmyadmin/htpasswd.setup
    </IfModule>
    Require valid-user
</Directory>

# Disallow web access to directories that don't need it
<Directory /usr/share/phpmyadmin/libraries>
    Order Deny,Allow
    Deny from All
</Directory>
<Directory /usr/share/phpmyadmin/setup/lib>
    Order Deny,Allow
    Deny from All
</Directory>
于 2013-11-06T16:28:18.550 回答
2

检查文件夹 /etc/apache2/conf.d 是否存在,如果不存在,则创建它。

mkdir -p /etc/apache2/conf.d/

Apache2.conf 文件将此文件夹中的所有文件包含到配置中,如果此文件夹不存在,则会显示错误。

user@host:~$ cat /etc/apache2/apache2.conf | grep conf.d
Include conf.d/

来自:https ://askubuntu.com/questions/365454/apache2-error-could-not-open-configuration-file-etc-apache2-conf-d-no-such-fi

然后替换这一行:

LockFile ${APACHE_LOCK_DIR}/accept.lock

有了这个:

Mutex file:${APACHE_LOCK_DIR} default

在 apache2.conf 文件中。

给我整理好了。

于 2013-12-18T21:31:59.647 回答