PHP安装之configure的配置参数
1、生成环境安装配置如下
要求安装如下库:
imagick
gd
mysql
mysqli
mysqlnd
phalcon
Phar
soap
sockets
xwebxsvc
zip
zlib
具体查看 vim php-config 就可以知道是如何配置的

--prefix=/home/php' '--with-config-file-path=/home/php/etc' '--with-mysql' '--with-pdo-oci' '--with-openssl' '--with-pear' '--with-mhash' '--with-xmlrpc' '--with-zlib' '--with-mcrypt' '--with-curl' '--with-gd' '--with-freetype-dir=/usr/include/freetype2' '--without-sqlite3' '--without-pdo-sqlite' '--disable-rpath' '--without-pear' '--enable-fpm' '--enable-maintainer-zts' '--enable-pcntl' '--with-tsrm-pthreads' '--enable-mbstring' '--enable-mbregex' '--enable-bcmath' '--enable-zip' '--enable-sockets' '--enable-soap' '--enable-gd-native-ttf' '--enable-xml' '--enable-inline-optimization' '--enable-opcache
./configure' '--prefix=/home/php' '--with-config-file-path=/home/php/etc' '--with-mysql' '--with-pdo-oci' '--with-openssl' '--with-pear' '--with-mhash' '--with-xmlrpc' '--with-zlib' '--with-mcrypt' '--with-curl' '--with-gd' '--with-freetype-dir=/usr/include/freetype2' '--without-sqlite3' '--without-pdo-sqlite' '--disable-rpath' '--without-pear' '--enable-fpm' '--enable-maintainer-zts' '--enable-pcntl' '--with-tsrm-pthreads' '--enable-mbstring' '--enable-mbregex' '--enable-bcmath' '--enable-zip' '--enable-sockets' '--enable-soap' '--enable-gd-native-ttf' '--enable-xml' '--enable-inline-optimization' '--enable-opcache
PHP安装之configure的配置参数的更多相关文章
- php源码安装常用配置参数和说明
常用的配置参数1. --prefix=/usr/local/php 指定 php 安装目录 install architecture-independent files in PREFIX 默认/us ...
- PHP 源码安装常用配置参数和说明
常用的配置参数1. --prefix=/usr/local/php指定 php 安装目录install architecture-independent files in PREFIX 默认/usr/ ...
- php编译安装configure完全配置够日常所用功能
php编译安装configure完全配置够日常所用功能 ./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/p ...
- nginx安装及负载均衡配置
Nginx (“engine x”) 是一个高性能的 HTTP 和 反向代理 服务器,也是一个 IMAP/POP3/SMTP 代理服务器. Nginx 是由 Igor Sysoev 为俄罗斯访问量第二 ...
- MySQL性能优化之max_connections配置参数浅析
这篇文章主要介绍了MySQL性能优化之max_connections配置参数浅析,本文着重讲解了3种配置max_connections参数的方法,需要的朋友可以参考下 MySQL的max_connec ...
- Oracle 12cR1 RAC 在VMware Workstation上安装(上)—OS环境配置
Oracle 12cR1 RAC 在VMware Workstation上安装(上)-OS环境配置 1.1 整体规划部分 1.1.1 所需软件介绍 Oracle RAC不支持异构平台.在同一个集群 ...
- Centos7安装openvpn及客户端配置
1.openvpn介绍 VPN直译就是虚拟专用通道,是提供给企业之间或者个人与公司之间安全数据传输的隧道,使用OpenSSL加密库中的SSLv3/TLSv1协议函数库. 目前OpenVPN能在Sola ...
- CentOS7 编译安装Nginx+php并配置php-fpm模块
1.编译安装PHP7.2.0 去官网下载安装包:http://php.net/downloads.php ,完成之后,上传至服务器,并释放压缩包 .tar.gz cd php- 因为我们需要编译安装, ...
- Linux 通过编译安装apache服务以及配置
Linux 编译安装apache服务 一.安装 1.通过编译安装,首先需要下载源代码安装包 apache下载链接:http://httpd.apache.org/download.cgi 2.解开源代 ...
随机推荐
- quartz2.3.0(十一)任务执行中故障情况,可设置重新执行任务
任务类 package org.quartz.examples.example11; import org.quartz.Job; import org.quartz.JobExecutionCont ...
- [LOJ2065] [SDOI2016]模式字符串
题目链接 洛谷:https://www.luogu.org/problemnew/show/P4075 LOJ:https://loj.ac/problem/2065 Solution 这种题看起来就 ...
- Unity的学习笔记(鼠标移动控制视角移动)
using UnityEngine; public class MouseLook : MonoBehaviour { , MouseX = , MouseY = } //定义一个枚举,移动xy,或者 ...
- 通俗易懂的join、left join、right join、full join、cross join
内连接:列出与连接条件匹配的数据行(join\inner join) 外连接:两表合并,如有不相同的列,另外一个表显示null(left join\right join\full outer join ...
- DuplexChannel
[ServiceContract(Namespace = "http://xx.com", CallbackContract = typeof(Ipub_c))] public i ...
- kubernetes第三章--创建harbor私有镜像库
- 关于UIImageView缓存加载的笔记
加载图片的两个方法: [UIImage imageNamed:] [[UIImage alloc] initWithContentsOfFile: imgpath] [UIImage imageNam ...
- CRM-Modelformset
CRM-Modelformset 效果图 利用modelformset实现上面的效果: views.py文件: from user.formself.myform import RegForm, Cu ...
- centos7 安装 git服务器
服务器端配置 yum install -y git groupadd git useradd git -g git 2.创建authorized_keys cd /home/git mkdir .ss ...
- java sql: PrepareStatement
参见菜鸟教程:JDBC 使用说明 增删改查: public class DbUtil { public static final String URL = "jdbc:mysql://loc ...