码迷,mamicode.com
首页 > Web开发 > 详细

centos7安装nginx1.10和php7

时间:2017-06-29 12:47:59      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:依赖包   .com   openssl   libxml2   export   text   ssl   rod   ttf   

安装nginx。

1.首先在根目录下创建一个software文件夹用来存储下载的压缩包。

2.然后cd跳转的software文件夹下,进行压缩包的下载

 wget -c https://nginx.org/download/nginx-1.10.1.tar.gz

3.解压,然后跳转到解压的目录下

tar -zxvf nginx-1.10.1.tar.gz

cd nginx-1.10.1

4. nginx-1.10.1 版本中你就不需要去配置相关东西,默认就可以了。使用默认配置

./configure 

5.编译

make

make install

6.查找安装路径:

whereis nginx

然后跳转到目录下,启动nginx

cd /usr/local/nginx/sbin/

./nginx

 技术分享

7.设置开机启动

即在rc.local增加启动代码就可以了。

vi /etc/rc.local (增加后esc:wq保存退出)

增加一行 /usr/local/nginx/sbin/nginx
设置执行权限:

chmod 755 /etc/rc.local

技术分享

 

安装php7

1.下载php7(保存在software文件夹下)

  wget -O php7.tar.gz http://cn2.php.net/get/php-7.1.1.tar.gz/from/this/mirror

2.解压php7

  tar -zxvf php7.tar.gz

3.进入php目录
 
    cd php-7.1.1

4.安装依赖包 (直接复制下面一行)

 yum installlibxml2 libxml2-devel openssl openssl-devel bzip2bzip2-devel libcurl libcurl-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel gmp gmp-devel libmcrypt libmcrypt-devel readline readline-devel libxslt libxslt-devel

5.编译配置,在shell中输入以下内容
./configure\
--prefix=/usr/local/php\
--with-config-file-path=/etc\
--enable-fpm \
--with-fpm-user=nginx \
--with-fpm-group=nginx \
--enable-inline-optimization \
--disable-debug \
--disable-rpath \
--enable-shared \
--enable-soap \
--with-libxml-dir\
--with-xmlrpc \
--with-openssl \
--with-mcrypt \
--with-mhash \
--with-pcre-regex \
--with-sqlite3 \
--with-zlib \
--enable-bcmath \
--with-iconv \
--with-bz2 \
--enable-calendar \
--with-curl \
--with-cdb \
--enable-dom \
--enable-exif \
--enable-fileinfo \
--enable-filter \
--with-pcre-dir\
--enable-ftp\
--with-gd \
--with-openssl-dir\
--with-jpeg-dir\
--with-png-dir\
--with-zlib-dir\
--with-freetype-dir\
--enable-gd-native-ttf \
--enable-gd-jis-conv \
--with-gettext \
--with-gmp \
--with-mhash \
--enable-json \
--enable-mbstring \
--enable-mbregex \
--enable-mbregex-backtrack \
--with-libmbfl \
--with-onig \
--enable-pdo \
--with-mysqli=mysqlnd \
--with-pdo-mysql=mysqlnd \
--with-zlib-dir\
--with-pdo-sqlite \
--with-readline \
--enable-session \
--enable-shmop \
--enable-simplexml \
--enable-sockets \
--enable-sysvmsg \
--enable-sysvsem \
--enable-sysvshm \
--enable-wddx \
--with-libxml-dir\
--with-xsl \
--enable-zip \
--enable-mysqlnd-compression-support \
--with-pear \
--enable-opcache
 
 
 
 
 
PATH=$PATH:/usr/local/php/bin
exportPATH
8.配置php-fpm  
cpphp.ini-production /etc/php.ini
cp/usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf
cp/usr/local/php/etc/php-fpm.d/www.conf.default /usr/local/php/etc/php-fpm.d/www.conf
cpsapi/fpm/init.d.php-fpm /etc/init.d/php-fpm
chmod+x /etc/init.d/php-fpm
9.启动php-fpm
/etc/init.d/php-fpmstart
10.配置其为开机自启动
    chkconfig php-fpm on
技术分享
ps:遇到的问题
  在启动php-fpm时一直启不来,报错如下
  技术分享
如果这样的话,只能访问html页面,不能访问php页面。
经过查找,找到了/usr/local/php/etc/php-fpm.d/www.conf文件,对其中的user=nginx和group=nginx进行了调整。然后成功。
技术分享
技术分享
 

centos7安装nginx1.10和php7

标签:依赖包   .com   openssl   libxml2   export   text   ssl   rod   ttf   

原文地址:http://www.cnblogs.com/hometown/p/7093782.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!