美文网首页
LAMP(2)

LAMP(2)

作者: AMZ小楼 | 来源:发表于2017-08-04 07:13 被阅读0次

PHP官网www.php.net

当前主流版本为5.6/7.1

cd /usr/local/src/

wget http://cn2.php.net/distributions/php-5.6.30.tar.gz

tar zxf php-6.6.30.tar.gz

cd php-5.6.30

yum install -y openssl-devl libxml2-devel  bzip2-devel libpng-devel libjpeg-devel freetype-devel epel-release libmcrypt-devel

./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2.4/bin/apxs --with-config-file-path=/usr/local/php/etc  --with-mysql=/usr/local/mysql --with-pdo-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-bz2 --with-openssl --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-mbstring --enable-sockets --enable-exif

make && make install

cp php.ini-production  /usr/local/php/etc/php.ini产品

三种mysql的库,让php支持mysql

想要的扩展模块

php就是apahce的一个扩展模块,在编译一个apache的.so 文件

查看所加载的模块

php作为apache的扩展模块

同理安装php7

wget http://cn2.php.net/distributions/php-7.1.6.tar.bz2

tar zxf php-7.1.6.tar.bz2

cd php-7.1.6

./configure --prefix=/usr/local/php7 --with-apxs2=/usr/local/apache2.4/bin/apxs --with-config-file-path=/usr/local/php7/etc  --with-pdo-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-bz2 --with-openssl --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-mbstring --enable-sockets --enable-exif

make && make install

cp php.ini-production  /usr/local/php/etc/php.ini产品

三种mysql的库,让php支持mysql

想要的扩展模块

php就是apahce的一个扩展模块,在编译一个apache的.so 文件

查看所加载的模块

php作为apache的扩展模块

同理安装php7

wget http://cn2.php.net/distributions/php-7.1.6.tar.bz2

tar zxf php-7.1.6.tar.bz2

cd php-7.1.6

./configure --prefix=/usr/local/php7 --with-apxs2=/usr/local/apache2.4/bin/apxs --with-config-file-path=/usr/local/php7/etc  --with-pdo-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-bz2 --with-openssl --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-mbstring --enable-sockets --enable-exif

make && make install

ls /usr/local/apache2.4/modules/libphp7.so

cp php.ini-production  /usr/local/php7/etc/php.ini

ls /usr/local/apache2.4/modules/libphp7.so

输出信息  /usr/local/php/bin/php -i |less

php中mysql,mysqli,mysqlnd,pdo到底是什么

http://blog.csdn.net/u013785951/article/details/60876816

查看编译参数

http://ask.apelearn.com/question/1295

相关文章

  • LAMP(2)

    PHP官网www.php.net 当前主流版本为5.6/7.1 cd /usr/local/src/ wget h...

  • 阿里云ecs+typecho搭建博客

    1 ubuntu安装 LAMP 参考1参考 2 阿里云ECS+Ubuntu16+LAMP环境 首先 执行 sudo...

  • LAMP

    1 LAMP 介绍 2 PHP配置 6 源码编译LAMP 7 以二进制格式安装mysql 8 安装wordpres...

  • laravel安装配置

    由于laravel需要许多配置环境,所以本教程从搭建lamp开始 环境更新 lamp搭建 1.安装apache2 ...

  • 阿里云安装 LA/NMP分布式环境详细步骤

    理论 什么是LAMP LAMP = Linux + Apache + MySQL +PHP 为什么使用LAMP ...

  • Facemash-alike web site building

    2014/11/2 03:10 Build LAMP(Linux + Apache + MySQL + PHP)...

  • linux 第四天

    Lamp环境搭建 /*******************Lamp环境搭建:*******************...

  • 26-LAMP架构

    本章内容 ◆ LAMP介绍◆ PHP配置◆ 实现LAMP应用数据库管理系统phpMyadmin◆ 实现LAMP应用...

  • 网络yum搭建LAMP简单环境

    LAMP 什么是LAMP环境?LAMP=linux+Apache+MySQL+Php只不过如今MySQL被甲骨文公...

  • docker lamp

    使用docker安装lamp docker search-s10lamp#搜索被收藏或使用较多的LAMP镜像,小伙...

网友评论

      本文标题:LAMP(2)

      本文链接:https://www.haomeiwen.com/subject/llamlxtx.html