linux 安裝php7 Nginx

這裏 記錄下 本屌安裝linux  下安裝php7 即遇到的問題。php

wget  http://cn2.php.NET/distributions/php-7.0.4.tar.gz
tar zxvf php-7.0.4.tar.gz
cd  php-7.0.4
#
./configure --enable-fpm --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc 

若是出現下列錯誤。。那就是沒有編譯環境 。 請安裝gcclinux

yum install gcc

以後看最後又遇到這個問題。。nginx

yum install libxml2-devel

最後  :c++

make && make install
# 安裝完成。。
#配置 (一下配置都是我我的的路徑配置 你們請按照各自路徑配置)

cp  php.ini-development /usr/local/lib/php.ini
cp sapi/fpm/init.d.php-fpm /etc/init.d/php7-fpm
chmod +x /etc/init.d/php7-fpm
cd /usr/local/php/etc
cp php-fpm.conf.default php-fpm.conf
cp php-fpm.d/www.conf.default php-fpm.d/www.conf

#配置完畢
/etc/init.d/php7-fpm start 啓動php

 

接下來安裝Nginx api

wget http://nginx.org/download/nginx-1.8.0.tar.gz
#安裝nginx  須要三個依賴
http://www.openssl.org/
http://www.zlib.net/
http://www.pcre.org/ 

wget http://www.openssl.org/source/openssl-fips-2.0.9.tar.gz
wget http://www.zlib.net/zlib-1.2.8.tar.gz
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.39.tar.gz
ll -h

接下來分別解壓三個包 tar zxvf (依次執行三個包)php7

若是有這種報錯php-fpm

configure: error: You need a C++ compiler for C++ support
則執行這個命令:
yum install -y gcc gcc-c++

下載下來以後建議從新安裝
./configure(若是沒有該文件那就執行這個 ./config) && make && make install
最後安裝nginx

./configure
make && make install
啓動命令:/usr/local/nginx/sbin/nginx
個人沒有。。。。。
若是有報錯
經網上查詢,這是Linux的通病

[root@localhost nginx]# sbin/nginx 
sbin/nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory
[root@localhost nginx]# error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory
[root@localhost nginx]# whereis libpcre.so.1
libpcre.so: /lib64/libpcre.so.0 /usr/local/lib/libpcre.so /usr/local/lib/libpcre.so.1
[root@localhost nginx]# ln -s /usr/local/lib/libpcre.so.1 /lib64
[root@localhost nginx]# sbin/nginx   
                           
先找到libpcre.so.1所在位置,而後作個軟連接就能夠了

 

 

最後spa

查看在網頁中訪問:.net

 

相關文章
相關標籤/搜索