php5.6.31編譯安裝的方法:1、新增epel來源;2、安裝依賴;3、下載並解壓縮php5.6.31;4、修改php-fpm.conf;5、啟動php-fpm即可。
本文操作環境:CentOS 7系統、php版本:5.6.31 nginx版本:1.7.3 mysql版本:5.6.62、DELL G3電腦
php5.6.31如何編譯安裝?
CentOS 7 編譯安裝PHP5.6.31:
伺服器上已經有nginx和mysql,所以就決定採用 PHP Nginx mysql
關於nginx和mysql的安裝,開始安裝前需要在linux的一些開發庫安裝在此也不複述,參考連結裡面都有。
PHP安裝設定
nginx本身不能處理PHP,它只是個WEB伺服器,當接收到請求後,如果是php請求,則傳送給php解釋器處理,並把結果傳回給客戶端。
安裝前準備新增epel 來源rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
安裝相依性yum install gcc bison bison-devel zlib-devel libmcrypt-devel mcrypt mhash-devel openssl-devel libxml2-devel libcurl-devel bzip2-devel readline-devel libedit-devel sqlite-develyum -y install gcc gcc-c++ glibcyum -y install libmcrypt-devel mhash-devel libxslt-devel \
libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel \
zlib zlib-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel \
ncurses ncurses-devel curl curl-devel e2fsprogs e2fsprogs-devel \
krb5 krb5-devel libidn libidn-devel openssl openssl-devel
下載php-5.6.31
1)將安裝套件解壓縮至 /usr/local/src
cd /usr/local/srctar -zvxf php-5.6.31.tar.gz
cd php-5.6.31./configure --prefix=/usr/local/php --enable-fpm --with-mcrypt \--enable-mbstring --enable-pdo --with-curl --disable-debug --disable-rpath \--enable-inline-optimization --with-bz2 --with-zlib --enable-sockets \--enable-sysvsem --enable-sysvshm --enable-pcntl --enable-mbregex \--with-mhash --enable-zip --with-pcre-regex --with-mysql --with-mysqli \--with-gd --with-jpeg-dir --with-freetype-dir --enable-calendarmake && make install
CentOS 中下载php: wget http://php.net/get/php-5.6.30.tar.gz/from/this/mirror以上就完成了php-fpm的安裝,安裝過程會花一些時間。 關於php設定1、提供php設定檔
cp php.ini-production /usr/local/php/etc/php.ini注意:php.ini-production 還是在剛才/usr/local/src/php-5.6. 31 目錄下2、提供php-fpm設定檔
cd /usr/local/phpcp etc/php-fpm.conf.default etc/php-fpm.conf vim etc/php-fpm.conf修改php-fpm.conf
user = www group = www如果www使用者不存在,那麼先加入www使用者(預設執行使用者nobody)
groupadd www useradd -g www www如果沒有設定這一步,瀏覽器開啟php 檔案會報錯
「The page you are looking for is temporarily unavailable . Please try again later」
修改pm.max_children = 150 pm.start_servers = 8 pm.min_spare_servers = 5 pm.max_spare_servers = 10 pid = /usr/local/php/var/run/php-fpm.pid3、啟動php-fpm執行
/usr/local/php/sbin/php-fpm使用下列指令來驗正(如果此指令輸出有中幾個php-fpm程序就表示啟動成功了):
ps aux | grep php-fpm
結果如下圖:
3、nginx和php -fpm整合 編輯nginx設定檔<pre class="brush:php;toolbar:false">vim /usr/local/nginx/conf/nginx.conf</pre>
初始內容如下:
# nginx运行的用户名 user nginx; # nginx启动进程,通常设置成和cpu的数量相等,这里为自动 worker_processes auto; # errorlog文件位置 error_log /var/log/nginx/error.log; # pid文件地址,记录了nginx的pid,方便进程管理 pid /run/nginx.pid; # Load dynamic modules. See /usr/share/nginx/README.dynamic. # 用来加载其他动态模块的配置 include /usr/share/nginx/modules/*.conf; # 工作模式和连接数上限 events { # 每个worker_processes的最大并发链接数 # 并发总数:worker_processes*worker_connections worker_connections 1024; } # 与提供http服务相关的一些配置参数类似的还有mail http { # 设置日志的格式 log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; # access_log记录访问的用户、页面、浏览器、ip和其他的访问信息 access_log /var/log/nginx/access.log main; # 这部分下面会单独解释 # 设置nginx是否使用sendfile函数输出文件 sendfile on; # 数据包最大时发包(使用Nagle算法) tcp_nopush on; # 立刻发送数据包(禁用Nagle算法) tcp_nodelay on; # 链接超时时间 keepalive_timeout 65; # 这个我也不清楚... types_hash_max_size 2048; # 引入文件扩展名与文件类型映射表 include /etc/nginx/mime.types; # 默认文件类型 default_type application/octet-stream; # Load modular configuration files from the /etc/nginx/conf.d directory. # See http://nginx.org/en/docs/ngx_core_module.html#include # for more information. include /etc/nginx/conf.d/*.conf; # http服务上支持若干虚拟主机。 # 每个虚拟主机一个对应的server配置项 # 配置项里面包含该虚拟主机相关的配置。 server { # 端口 listen 80 default_server; listen [::]:80 default_server; # 访问的域名 server_name _; # 默认网站根目录(www目录) root /usr/share/nginx/html; # Load configuration files for the default server block. include /etc/nginx/default.d/*.conf; # 默认请求 location / { } # 错误页(404) error_page 404 /404.html; location = /40x.html { } # 错误页(50X) error_page 500 502 503 504 /50x.html; location = /50x.html { } } }我們要變更設定的只需要
##server
#部分就可以了。進入vim編輯模式,或用FlashFXP將設定檔共用到桌面來更改即可。
只需要改動三處即可
server { listen 80 default_server; listen [::]:80 default_server; # 这里改动了,也可以写你的域名,我用的是IP地址 server_name 192.168.0.222; root /usr/share/nginx/html; # Load configuration files for the default server block. include /etc/nginx/default.d/*.conf; location / { # 这里改动了 定义首页索引文件的名称 index index.php index.html index.htm; } error_page 404 /404.html; location = /40x.html { } error_page 500 502 503 504 /50x.html; location = /50x.html { } # 这里新加的 # PHP 脚本请求全部转发到 FastCGI处理. 使用FastCGI协议默认配置. # Fastcgi服务器和程序(PHP,Python)沟通的协议. location ~ \.php$ { # 设置监听端口 fastcgi_pass 127.0.0.1:9000; # 设置脚本文件请求的路径 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; # 引入fastcgi的配置文件 include fastcgi_params; } }重啟nginx伺服器
nginx -s reload此時,nginx和php已經聯合設定完成了,但是我們並不知道實際設定效果如何,這個時候我們可以寫一個小小的測試腳本來驗證一下。
之前提過了/usr/share/nginx/html是Nginx的網站根目錄,我們可以在這個目錄下建立一個php測試腳本。
# phpinfo.php是我要建立的檔名
vi /usr/share/nginx/html/phpinfo.php開啟編輯器後,在裡面輸入
e2fef49b76a02e58cb8a935d1457623a儲存退出後,在瀏覽器中輸入http: //192.168.0.222/phpinfo.php,我這裡的ip是192.168.0.222,你換成你們自己的即可。如圖出現類似如下介面:
Nginx和php已經設定完成了。
4、安裝過程出錯原因
###我依照流程安裝時,出現了一個錯誤:mcrypt.h not found. Please reinstall libmcrypt######是因為php-mcrypt libmcrypt libmcrypt-devel這些套件沒安裝,出現的錯誤通常都是缺少庫或者包,安裝即可。 ###此時PHP已經設定完成,祝君安裝順利。順便提前祝大家新年快樂!
推薦學習:《PHP影片教學》
以上是php5.6.31如何編譯安裝的詳細內容。更多資訊請關注PHP中文網其他相關文章!