尝试使用
启动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的文件,但我没有。
答案 0 :(得分:10)
刚刚在Debian 7上遇到此问题,安装程序和dpkg-reconfigure phpmyadmin创建了一个断开的链接“/etc/apache2/conf.d/phpmyadmin.conf”,指向丢失的文件“../../phpmyadmin /apache.conf”。不得不从较旧的安装中删除副本,在下面发布。 Piotr,你的意见没用,不污染。
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>
答案 1 :(得分:1)
检查文件夹/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/
然后替换这一行:
LockFile ${APACHE_LOCK_DIR}/accept.lock
这一个:
Mutex file:${APACHE_LOCK_DIR} default
在apache2.conf文件中。
为我排序。