CentOS6.5 编译php7.2.8

CentOS6.5 需要安装 https://octobercms.com/
httpd 2.4.34
php 7.2.8
mysql community 8.0.11

一开始安装了现成的php及其常见模块,结果发现网页不动态执行php代码。因为没有libphp7.so模块,而这似乎需要自己编译php

php官方给出的针对apache2的安装指南
http://us1.php.net/manual/en/install.unix.apache2.php

中间遇到一堆问题,最终我用的配置命令如下,注意我的httpd没有装到默认目录,所以写成 –with-apxs2=/app/httpd24/bin/apxs 这里如果你的配置不同,需要修改:

 ./configure \
--enable-bcmath \
--enable-calendar \
--enable-exif \
--enable-ftp \
--enable-gd-jis-conv \
--enable-mbstring \
--enable-pcntl \
--enable-sockets \
--enable-soap \
--enable-sysvmsg \
--enable-sysvsem \
--enable-sysvshm \
--enable-wddx \
--enable-zip \
--with-apxs2=/app/httpd24/bin/apxs \
--with-bz2=/usr \
--with-curl \
--with-freetype-dir=/usr \
--with-gd \
--with-gettext=/usr \
--with-gmp \
--with-iconv=/usr/local/lib \
--with-jpeg-dir=/usr \
--with-openssl \
--with-pdo-mysql \
--with-png-dir=/usr \
--with-pspell \
--with-recode=/usr \
--with-xpm-dir=/usr \
--with-zlib-dir=/usr \
--with-zlib=/usr

这中间出了很多问题,最多的就是缺这缺那,已经有人详细列出了各个类似错误消息对应的需要补充安装的包。如果个别例如recode实在没人列出,可以用 yum whatprovides 来检查需要安装的包

关于mysql的php连接驱动, 官方指南
https://dev.mysql.com/doc/apis-php/en/

似乎有三种方式
mysqli
pdo_mysql
Mysql_xdevapi

一开始的时候,我同时配置了mysqli和pdo_mysql,结果pdo_mysql报错循环引用,所以我后来就选用了pdo_mysql

中间一度报错找不到某些库,执行了yum whatprovides之后,发现需要安装mysql-community-devel

中间还报了一些错误,原来每次编译前,需要先执行make clean

你可能感兴趣的:(CentOS,MySQL,PHP,Apache,CMS)