为了账号安全,请及时绑定邮箱和手机立即绑定

lnmp之php

标签:
PHP


server3.example.com  172.25.85.3


1.server3:

tar jxf php-5.6.19.tar.bz2
yum install curl-devel   -y
yum install re2c-0.13.5-1.el6.x86_64.rpm  gmp-devel   net-snmp-devel 

        gd-devel-2.0.35-11.el6.x86_64.rpm  libxml2-devel     -y
cd  /root/php-5.6.19
./configure  --prefix=/usr/local/lnmp/php 

--with-config-file-path=/usr/local/lnmp/php/etc      --with-mysql=mysqld   --with-mysqli=mysqld

--with-pdo-mysql=mysqld   --with-openssl      --with-snmp     --with-gd     --with-zlib

--with-curl               ##文本浏览

--with-libxml-dir    --with-png-dir         --with-jpeg-dir      --with-freetype-dir    --without-pear         ##不联网安装

--with-gettext     --with-gmp     --enable-inline-optimization 

--enable-soap       ##支持动态加载模块

-enable-ftp     --enable-sockets    --enable-mbstring       --enable-fpm 

--with-fpm-user=nginx      --with-fpm-group=nginx
 


make
make install


cp php.ini-production /usr/local/lnmp/php/etc/php-ini
vim  .bash_profile

1

2

PATH=$PATH:$HOME/bin:/usr/local/lnmp/mysql/bi

n:/usr/local/lnmp/nginx/sbin:/usr/local/lnmp/php/bin

source  .bash_profile

cd /usr/local/lnmp/php/etc
cp php-fpm.conf.default php-fpm.conf
vim php.ini

1

2

3

4

date.timezone = Asia/Shanghai

pdo_mysql.default_socket= /usr/local/lnmp/mysql/data/mysql.sock

mysql.default_port = /usr/local/lnmp/mysql/data/mysql.sock

mysqli.default_socket=/usr/local/lnmp/mysql/data/mysql.sock



/etc/init.d/mysqld start
 ll /usr/local/lnmp/mysql/data/mtsql.sock

chmod  755  /usr/local/lnmp/mysql/data


vim php-fpm.conf

1pid = run/php-fpm.pid


cd php-5.6.19/sapi/fpm/cp   init.d.php-fpm /etc/init.d/fpmchmod    +x   /etc/init.d/fpm/etc/init.d/fpm startphp -m    ##查看php支持插件


1vim /usr/local/lnmp/nginx/html/index.php

1

2

3

<?php

phpinfo();

?>


vim /usr/local/lnmp/nginx/conf/nginx.conf

1

2

3

4

5

6

7

8

locaton ~ \.php$ {

       root    html;

       fastcgi_pass  127.0.0.1:9000;

       fastcgi_index  index.php;

       fastcgi_param  SCRIPT_FILENAME /scripts$factcgi_script_name;

       include   fastcgi.conf;

 

 }


cd /usr/local/lnmp/nginx/conf/

ls


nginx -t

nginx -s reload

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消