博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
编译安装php 附加一键安装php5.6.30脚本
阅读量:6334 次
发布时间:2019-06-22

本文共 3055 字,大约阅读时间需要 10 分钟。

安装php需要的软件。

1
2
3
yum -y 
install 
gcc gcc-c++ libzip-devel libxml2-devel libiconv libjpeg-devel libpng-devel
yum -y 
install 
gdgd-devel 
bzip2
-devel curl-devel freetype-devel zlib-devel glibc-devel glib2-devel
yum -y 
install 
libtool-ltdl-devel pcre-devel libmcrypt-devel mhash-devel libxslt-devel gettext-devel

安装libiconv库

1
2
3
4
5
6
wget http:
//ftp
.gnu.org
/pub/gnu/libiconv/libiconv-1
.13.
tar
.gz
tar 
zxf libiconv-1.13.
tar
.gz
cd 
libiconv-1.13
.
/configure 
--prefix=
/usr/local/libiconv
make 
&& 
make 
install
cd 
..

安装PHP

1
2
3
4
5
cd 
/home/darren/tools
#需要手动下载php,附件中也有
http:
//cn2
.php.net
/get/php-5
.6.30.
tar
.gz
/from/this/mirror
tar 
zxf php-5.6.30.
tar
.gz
cd 
php-5.6.30
1
##############
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
.
/configure 
--prefix=
/usr/local/php 
\
--
enable
-mysqlnd \
--with-mysql=mysqlnd \ 
--with-mysqli=mysqlnd \   
--with-pdo-mysql=mysqlnd \
--with-iconv-
dir
=
/usr/local/libiconv 
\
--with-freetype-
dir 
\
--with-jpeg-
dir 
\
--with-png-
dir 
\
--with-zlib \
--with-libxml-
dir
=
/usr 
\
--
enable
-xml \
--disable-rpath \
--
enable
-bcmath \
--
enable
-shmop \
--
enable
-sysvsem \
--
enable
-inline-optimization \
--with-curl \
--with-mcrypt \
--with-curlwrappers \
--
enable
-mbregex \
--
enable
-fpm \
--
enable
-mbstring \
--with-gd \
--
enable
-gd-native-ttf \
--with-openssl \
--with-mhash \
--
enable
-pcntl \
--
enable
-sockets \
--with-xmlrpc \
--
enable
-zip \
--
enable
-soap \
--
enable
-short-tags \
--
enable
-zend-multibyte \
--
enable
-static \
--with-xsl \
--
enable
-
ftp
\
--with-fpm-user=nginx \
--with-fpm-group=nginx \
1
make 
&& 
make 
install

################################################################         

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#复制php配置文件php.ini
cp 
php.ini-production 
/usr/local/php/lib/php
.ini
 
#复制fastcgi配置文件php-fpm.conf
cd 
/usr/local/php/etc/   
cp 
php-fpm.conf.default php-fpm.conf
 
#################################################################  
 
/usr/local/php/sbin/php-fpm 
-t   
#检查语法
  
/usr/local/php/sbin/php-fpm    
#启动php-fpm
  
cp 
sapi
/fpm/init
.d.php-fpm 
/etc/init
.d
/php-fpm     
#拷贝启动脚本
 
chkconfig --add php-fpm    
#增加到开机启动项
 
chkconfig php-fpm on     
#设置开机启动
1
2
######################################
一键安装php脚本:

  

附另一个生产环境编译参数:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
.
/configure 
--prefix=
/usr/local/php 
\
--with-mysql=mysqlnd \
--with-mysqli=mysqlnd \
--with-pdo-mysql=mysqlnd \
--with-iconv-
dir 
\
--with-freetype-
dir 
\
--with-jpeg-
dir 
\
--with-png-
dir 
\
--with-zlib \
--with-libxml-
dir 
\
--
enable
-xml \
--disable-rpath \
--
enable
-bcmath \
--
enable
-shmop \
--
enable
-sysvsem \
--
enable
-inline-optimization \
--with-curl \
--with-mcrypt \
--with-curlwrappers \
--
enable
-mbregex \
--
enable
-fpm \
--
enable
-mbstring \
--with-gd \
--
enable
-gd-native-ttf \
--with-openssl \
--with-mhash \
--
enable
-pcntl \
--
enable
-sockets \
--with-xmlrpc \
--
enable
-zip \
--
enable
-soap \
--without-pear

 

本文转自 王家东哥 51CTO博客,原文链接:http://blog.51cto.com/xiaodongge/1919497

转载地址:http://zjsoa.baihongyu.com/

你可能感兴趣的文章
互联网生态建设落地五大挑战——保险科技生态建设 ...
查看>>
进行短视频app开发工作时,可以加入它来保护青少年 ...
查看>>
25G DAC无源高速线缆和25G光模块之间的区别
查看>>
乐乐茶完成近2亿元Pre-A轮融资,祥峰投资领投
查看>>
clickhouse修改时区
查看>>
CSS_定位
查看>>
第二十四章:页面导航(六)
查看>>
百度、长沙加码自动驾驶,湖南阿波罗智行科技公司成立 ...
查看>>
10 个 Linux 中方便的 Bash 别名
查看>>
[Server] 服务器配置SSH登录邮件通知
查看>>
全新 DOCKER PALS 计划上线,带给您不一样的参会体验! ...
查看>>
Android开发之自定义View(二)
查看>>
python爬虫之微打赏(scrapy版)
查看>>
自制操作系统Antz day08——实现内核 (中) 扩展内核
查看>>
poj-1056-IMMEDIATE DECODABILITY(字典)
查看>>
阿里云容器Kubernetes监控(二) - 使用Grafana展现Pod监控数据
查看>>
区块链应用 | 不知道什么时候起,满世界都在谈区块链的事情
查看>>
小程序爆红 专家:对简单APP是巨大打击
查看>>
FarBox--另类有趣的网站服务【转】
查看>>
在非纯色背景上,叠加背景透明的BUTTON和STATIC_TEXT控件
查看>>