gpt4 book ai didi

linux - 无法启动 Apache Web 服务器

转载 作者:太空宇宙 更新时间:2023-11-04 11:01:05 25 4
gpt4 key购买 nike

我正在尝试通过 Wordpress Wiki 在 Arch Linux 上安装 Wordpress和Apache and php-fm/mod_proxy_fcgi .

我通过 pacman 安装了 Wordpress 到“/usr/share/webapps/wordpress/”

当我尝试运行“systemctl start httpd”时出现错误。运行“systemctl status httpd.service -l”输出:

httpd.service - Apache Web Server
Loaded: loaded (/usr/lib/systemd/system/httpd.service; disabled)
Active: failed (Result: exit-code) since Wed 2014-11-19 03:48:11 EST; 26s ago
Process: 12633 ExecStop=/usr/bin/apachectl graceful-stop (code=exited, status=1/FAILURE)
Process: 13162 ExecStart=/usr/bin/apachectl start (code=exited, status=1/FAILURE)
Main PID: 12463 (code=exited, status=0/SUCCESS)

systemd[1]: Starting Apache Web Server...
apachectl[13162]: AH00526: Syntax error on line 6 of /etc/httpd/conf/extra/httpd-wordpress.conf:
apachectl[13162]: Invalid command 'php_admin_value', perhaps misspelled or defined by a module not included in the server configuration
systemd[1]: httpd.service: control process exited, code=exited status=1
systemd[1]: Failed to start Apache Web Server.
systemd[1]: Unit httpd.service entered failed state.
systemd[1]: httpd.service failed.`

“/etc/httpd/conf/extra/httpd-wordpress.conf”包含:

Alias /testing "/usr/share/webapps/wordpress"
<Directory "/usr/share/webapps/wordpress">
AllowOverride All
Options FollowSymlinks
Require all granted
php_admin_value open_basedir "/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:$"
</Directory>

如有任何建议,我们将不胜感激。

最佳答案

当使用带有 fastCGI 代理或 PHP-FPM 的 php 时,PHP 运行时不再嵌入到 apache 运行时进程中。这将提高 Apache 网络服务器和 PHP 的性能,因为进程存储在彼此独立的内存中,即使在服务器请求之后也是如此。

然而,这确实意味着 php 管理值不能再存储在 apache 配置中,而在 apache 本身内运行 php 时是可能的。

您可以通过添加添加服务器范围的 open_basedir 限制

open_basedir = "<insert path here>" 

到您的全局 php.ini 文件,通常存储在 /etc/php5/<runtime>/您的运行时将是 fpm、fcgid 或类似的东西。

此外,如果您在同一台服务器上有多个网站,则可以使用 .user.ini网站根目录中的文件来设置 PHP 值。 .user.ini 中设置的值文件将覆盖 php.ini 中的任何 PHP 集允许时(参见 PHP Manual)

关于linux - 无法启动 Apache Web 服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27012703/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com