博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
以Apache模块的方式编译安装php-5.5.4
阅读量:4974 次
发布时间:2019-06-12

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

新建用户及用户组

groupadd webuseruseradd -g webuser webuser

下载php-5.5

下载地址:http://pan.baidu.com/s/1o6I6Lnk

解包

tar zxvf php-5.5.4.tar.gzcd php-5.5.4./configure --prefix=/server/php5 \--enable-sockets \--with-apxs2=/server/apache2/bin/apxs \--with-mysql=/server/mysql \--with-mysqli \--with-mysqli=/server/mysql/bin/mysql_config \--with-pdo-mysql=/server/mysql \--with-jpeg-dir=/usr/lib64 \--with-curl \--enable-mbstring=all \--with-config-file-path=/server/php5/etc \--enable-soap \--with-freetype-dir=/usr/local/lib \--with-gd \--with-gettext

编译 并 安装

make && make installvi /server/apache2/conf/httpd.conf

增加Addtype 一行

AddType application/x-httpd-php .phpcp ./php.ini-production /server/php5/etc/php.ini

编辑include_path

vi  /server/php5/etc/php.iniinclude_path = ".:/php/includes:/server/php5/lib/php"cgi.fix_pathinfo=1date.timezone = Asia/Shanghai

启用了selinux的系统需要如下一行操作

chcon -t texrel_shlib_t /server/apache2/modules/libphp5.so

重启Apache

/server/apache2/bin/apachectl restart

 

转载于:https://www.cnblogs.com/yjken/p/3921845.html

你可能感兴趣的文章
HTML基础
查看>>
Vue 学习随笔六 - Directive添加以及form绑定
查看>>
VMware 连接不上XSHELL
查看>>
Java高级架构师(一)第38节:Nginx的负载均衡模块
查看>>
《Python黑帽子:黑客与渗透测试编程之道》 自动化攻击取证
查看>>
CE修改器使用教程 [基础篇]
查看>>
C++获取系统信息(IP地址、硬件信息等)
查看>>
windows下python常用库的安装
查看>>
1-3.ag2基础知识-你好世界
查看>>
白话SSL协议的握手过程
查看>>
华中农业大学校赛--c The Same Color
查看>>
计算器部分代码
查看>>
高通芯片中的MDP模块[msm7x27]
查看>>
评分卡模型
查看>>
javascript中li标签的排序和数组sort的用法
查看>>
附加导航示例
查看>>
Mac上进行session hijack
查看>>
python时间戳数字转为字符串格式表达
查看>>
$.ajax()方法详解
查看>>
全面的framebuffer详解
查看>>