我的编程空间,编程开发者的网络收藏夹
学习永远不晚

php源码安装、简单配置、测试及连接数据库

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

php源码安装、简单配置、测试及连接数据库

主机环境 redhat6.5 64位

实验环境 服务端 ip172.25.29.1  php

安装包   php-5.6.20.tar.bz2

        re2c-0.13.5-1.el6.x86_64.rpm

        libmcrypt-2.5.8-9.el6.x86_64.rpm

        libmcrypt-devel-2.5.8-9.el6.x86_64.rpm

        Discuz_X3.2_SC_UTF8.zip

1.  安装php

1.解压

[root@server1 mnt# tar jxf php-5.6.20.tar.bz2    #解压

[root@server1 php-5.6.20]# rpm -vih libmcrypt-*   #安装libmcrypt库

[root@server1 php-5.6.20]# yum installre2c-0.13.5-1.el6.x86_64.rpm –y   #安装re2c

 

2.软件配置

[root@server1 php-5.6.20]# ./configure --prefix=/usr/local/lnmp/php--with-config-file-path=/usr/local/lnmp/php/etc --with-openssl --with-snmp--with-gd --with-zlib --with-curl --with-libxml-dir --with-png-dir--with-jpeg-dir --with-freetype-dir --with-gettext --without-pear --with-gmp--enable-inline-optimization --enable-soap --enable-ftp --enable-sockets--enable-mbstring --with-mysqli --with-mysql --with-pdo-mysql --enable-fpm--with-fpm-user=nginx --with-fpm-group=nginx --with-mcrypt --with-mhash

 

如果出现如下错误

php源码安装、简单配置、测试及连接数据库

[root@server1 php-5.6.20]# yum install libxml2-devel -y

 

重新配置

[root@server1 php-5.6.20]# ./configure--prefix=/usr/local/lnmp/php --with-config-file-path=/usr/local/lnmp/php/etc--with-openssl --with-snmp --with-gd --with-zlib --with-curl --with-libxml-dir--with-png-dir --with-jpeg-dir --with-freetype-dir --with-gettext--without-pear --with-gmp --enable-inline-optimization --enable-soap--enable-ftp --enable-sockets --enable-mbstring --with-mysqli --with-mysql--with-pdo-mysql --enable-fpm --with-fpm-user=nginx --with-fpm-group=nginx--with-mcrypt --with-mhash

 

如果出现如下错误

php源码安装、简单配置、测试及连接数据库

[root@server1 php-5.6.20]# yum provides */easy.h

php源码安装、简单配置、测试及连接数据库

[root@server1 php-5.6.20]# yum install -ylibcurl-devel-7.19.7-37.el6_4.x86_64

 

重新配置

[root@server1 php-5.6.20]# ./configure--prefix=/usr/local/lnmp/php --with-config-file-path=/usr/local/lnmp/php/etc--with-openssl --with-snmp --with-gd --with-zlib --with-curl --with-libxml-dir--with-png-dir --with-jpeg-dir --with-freetype-dir --with-gettext--without-pear --with-gmp --enable-inline-optimization --enable-soap--enable-ftp --enable-sockets --enable-mbstring --with-mysqli --with-mysql--with-pdo-mysql --enable-fpm --with-fpm-user=nginx --with-fpm-group=nginx--with-mcrypt --with-mhash

 

如果出现如下错误

php源码安装、简单配置、测试及连接数据库

[root@server1 php-5.6.20]# yum provides */jpeglib.h

[root@server1 php-5.6.20]# yum install -ylibjpeg-turbo-devel-1.2.1-1.el6.x86_64

 

重新配置

[root@server1 php-5.6.20]# ./configure--prefix=/usr/local/lnmp/php --with-config-file-path=/usr/local/lnmp/php/etc--with-openssl --with-snmp --with-gd --with-zlib --with-curl --with-libxml-dir--with-png-dir --with-jpeg-dir --with-freetype-dir --with-gettext--without-pear --with-gmp --enable-inline-optimization --enable-soap--enable-ftp --enable-sockets --enable-mbstring --with-mysqli --with-mysql--with-pdo-mysql --enable-fpm --with-fpm-user=nginx --with-fpm-group=nginx--with-mcrypt --with-mhash

 

如果出现如下错误

php源码安装、简单配置、测试及连接数据库

[root@server1 php-5.6.20]# yum provides */png.h

[root@server1 php-5.6.20]# yum install -ylibpng-devel-1.2.49-1.el6_2.x86_64

 

重新配置

[root@server1 php-5.6.20]# ./configure--prefix=/usr/local/lnmp/php --with-config-file-path=/usr/local/lnmp/php/etc--with-openssl --with-snmp --with-gd --with-zlib --with-curl --with-libxml-dir--with-png-dir --with-jpeg-dir --with-freetype-dir --with-gettext--without-pear --with-gmp --enable-inline-optimization --enable-soap--enable-ftp --enable-sockets --enable-mbstring --with-mysqli --with-mysql--with-pdo-mysql --enable-fpm --with-fpm-user=nginx --with-fpm-group=nginx--with-mcrypt --with-mhash

 

如果出现如下错误

php源码安装、简单配置、测试及连接数据库

[root@server1 php-5.6.20]# yum install -y freetype-devel

 

重新配置

[root@server1 php-5.6.20]# ./configure--prefix=/usr/local/lnmp/php --with-config-file-path=/usr/local/lnmp/php/etc--with-openssl --with-snmp --with-gd --with-zlib --with-curl --with-libxml-dir--with-png-dir --with-jpeg-dir --with-freetype-dir --with-gettext--without-pear --with-gmp --enable-inline-optimization --enable-soap--enable-ftp --enable-sockets --enable-mbstring --with-mysqli --with-mysql--with-pdo-mysql --enable-fpm --with-fpm-user=nginx --with-fpm-group=nginx--with-mcrypt --with-mhash

 

如果出现如下错误

php源码安装、简单配置、测试及连接数据库

[root@server1 php-5.6.20]# yum provides */gmp.h

[root@server1 php-5.6.20]# yum install -y gmp-devel-4.3.1-7.el6_2.2.x86_64

 

重新配置

[root@server1 php-5.6.20]# ./configure--prefix=/usr/local/lnmp/php --with-config-file-path=/usr/local/lnmp/php/etc --with-openssl--with-snmp --with-gd --with-zlib --with-curl --with-libxml-dir --with-png-dir--with-jpeg-dir --with-freetype-dir --with-gettext --without-pear --with-gmp--enable-inline-optimization --enable-soap --enable-ftp --enable-sockets--enable-mbstring --with-mysqli --with-mysql --with-pdo-mysql --enable-fpm--with-fpm-user=nginx --with-fpm-group=nginx --with-mcrypt --with-mhash

 

如果出现如下错误

php源码安装、简单配置、测试及连接数据库

[root@server1 php-5.6.20]# yum install -y net-snmp-devel

 

重新配置

[root@server1 php-5.6.20]# ./configure--prefix=/usr/local/lnmp/php --with-config-file-path=/usr/local/lnmp/php/etc--with-openssl --with-snmp --with-gd --with-zlib --with-curl --with-libxml-dir--with-png-dir --with-jpeg-dir --with-freetype-dir --with-gettext--without-pear --with-gmp --enable-inline-optimization --enable-soap--enable-ftp --enable-sockets --enable-mbstring --with-mysqli --with-mysql--with-pdo-mysql --enable-fpm --with-fpm-user=nginx --with-fpm-group=nginx--with-mcrypt --with-mhash

 

3.编译、链接、安装

[root@server1 php-5.6.20]# make #编译

[root@server1 php-5.6.20]# make install   #安装

 

2.php的简单配置

[root@server1 php-5.6.20]# cd /usr/local/lnmp/php/etc/

[root@server1 etc]# ls

php-fpm.conf.default

[root@server1 etc]# cp php-fpm.conf.default php-fpm.conf   #备份php的文件

[root@server1 etc]# ls

php-fpm.conf php-fpm.conf.default

[root@server1 etc]# cp /mnt/php-5.6.20/php.ini-production php.ini   #php的配置文件

[root@server1 etc]# ls

php-fpm.conf php-fpm.conf.default  php.ini


如果要连接数据库,就做以下修改

[root@server1 etc]# vim php.ini

925 date.timezone = Asia/Shanghai          #修改时区

1001 pdo_mysql.default_socket=/usr/local/lnmp/mysql/data/mysql.sock   #指定连接数据库的sock文件的路径

1150 mysql.default_socket = /usr/local/lnmp/mysql/data/mysql.sock   #同上

1209 mysqli.default_socket =/usr/local/lnmp/mysql/data/mysql.sock   #同上

[root@server1 etc]# vim php-fpm.conf

25 pid = run/php-fpm.pid          #将pid的标记去掉

 

[root@server1 etc]# cd /mnt/php-5.6.20/sapi/fpm/

[root@server1 fpm]# cp init.d.php-fpm /etc/init.d/php-fpm   #添加启动命令

[root@server1 fpm]# chmod +x /etc/init.d/php-fpm       #添加可执行权限

[root@server1 fpm]# ll /etc/init.d/php-fpm

-rwxr-xr-x 1 root root 2359 Sep 18 00:18 /etc/init.d/php-fpm

[root@server1 fpm]# /etc/init.d/php-fpm start        #开启php服务

Starting php-fpm  done

 

[root@server1 fpm]# cd /usr/local/lnmp/nginx/conf/

[root@server1 conf]# vim nginx.conf         

 51             root   html;

 52             index  index.php index.html index.htm;     #在nginx里添加默认访问目录为php优先

 50         location / {

 

 53         }

 

 75         location ~ \.php$ {

 76             root           html;

 77             fastcgi_pass   127.0.0.1:9000;

 78             fastcgi_index  index.php;

 79             fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;

 80             include        fastcgi.conf;         #设置成已存在的文件

 81         }

 

[root@server1 conf]# nginx –t       #检测

[root@server1 conf]# nginx           #开启

[root@server1 conf]# cd ..

[root@server1 nginx]# cd html

[root@server1 html]# vim index.php       #写一个简单的测试文件

<?php

phpinfo()

?>

[root@server1 html]# /etc/init.d/httpd start      #开启httpd

Starting httpd:                                           [  OK  ]

 

3.测试  172.25.29.1

php源码安装、简单配置、测试及连接数据库

 


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

php源码安装、简单配置、测试及连接数据库

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

如何在Ubuntu系统上安装配置PHP以连接MSSQL数据库

在Ubuntu系统上安装配置PHP以连接MSSQL数据库是一项常见的任务,特别是在开发Web应用程序时。在本文中,我们将介绍如何在Ubuntu系统上安装PHP、MSSQL扩展以及配置数据库连接,同时提供具体的代码示例。步骤一:安装PHP和
如何在Ubuntu系统上安装配置PHP以连接MSSQL数据库
2024-02-29

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录