我的 Centos 6 服务器中的网站选择了错误的 PHP 版本

我的 Centos 6 服务器中的网站选择了错误的 PHP 版本

我有一台安装了 PHP 5.6.20 的 CentOS 6 服务器:

# php -v
PHP 5.6.20 (cli) (built: Apr  2 2016 08:28:23)
Copyright (c) 1997-2016 The PHP Group
Zend Engine v2.6.0, Copyright (c) 1998-2016 Zend Technologies
    with Zend OPcache v7.0.6-dev, Copyright (c) 1999-2016, by Zend Technologies

但是当我在网站上运行 phpinfo() 时,它报告 PHP 5.6.13。

该版本之前安装过。如何设置 apache 始终使用 5.6.20 版本?

# httpd -V
Server version: Apache/2.4.16 (Unix)
Server built:   Nov  3 2015 13:24:41
Server's Module Magic Number: 20120211:47
Server loaded:  APR 1.5.2, APR-UTIL 1.5.4
Compiled using: APR 1.5.2, APR-UTIL 1.5.4
Architecture:   64-bit
Server MPM:     prefork
  threaded:     no
    forked:     yes (variable process count)
Server compiled with....
 -D APR_HAS_SENDFILE
 -D APR_HAS_MMAP
 -D APR_HAVE_IPV6 (IPv4-mapped addresses enabled)
 -D APR_USE_SYSVSEM_SERIALIZE
 -D APR_USE_PTHREAD_SERIALIZE
 -D SINGLE_LISTEN_UNSERIALIZED_ACCEPT
 -D APR_HAS_OTHER_CHILD
 -D AP_HAVE_RELIABLE_PIPED_LOGS
 -D DYNAMIC_MODULE_LIMIT=256
 -D HTTPD_ROOT="/opt/apache"
 -D SUEXEC_BIN="/opt/apache/bin/suexec"
 -D DEFAULT_PIDLOG="logs/httpd.pid"
 -D DEFAULT_SCOREBOARD="logs/apache_runtime_status"
 -D DEFAULT_ERRORLOG="logs/error_log"
 -D AP_TYPES_CONFIG_FILE="conf/mime.types"
 -D SERVER_CONFIG_FILE="conf/httpd.conf"

我已经通过编译源代码安装了 PHP 5.6.13。PHP 5.6.20 是通过 YUM 安装的。如何删除或让 apache 忽略 5.6.20?

答案1

我会不是建议使用编译版本,因为这样您就需要自己进行更多的维护(每当有新版本发布时,您都需要一次又一次地下载并编译它)。

您可能需要研究以下内容,因为至少它是基于 RPM 的,并且您会获得更新:

通过 Yum 在 CentOS/RHEL 7.2 和 6.7 上运行 PHP 5.6 | Webtatic.com

相关内容