中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

php5.6.27的安裝教程

本篇內(nèi)容主要講解“php5.6.27的安裝教程”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“php5.6.27的安裝教程”吧!

成都創(chuàng)新互聯(lián)主要從事網(wǎng)站制作、成都網(wǎng)站制作、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)張掖,10多年網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):18980820575

php5.6.27安裝方法:首先安裝編譯工具,并添加php組和用戶;然后安裝依賴,添加擴(kuò)展包,更新yum源;接著下載php并解壓安裝;最后配置PHP即可。

本文操作環(huán)境:windows7系統(tǒng)、PHP7.1版,DELL G3電腦

php5.6.27安裝教程

centos7 編譯安裝php5.6.27

安裝編譯工具

yum -y install gcc gcc-c++

添加php組和用戶,不創(chuàng)建home目錄,不允許登陸系統(tǒng)

#-M, --no-create-home        不創(chuàng)建用戶的主目錄
#-g, --gid GROUP        新賬戶主組的名稱或 ID
#-s, --shell SHELL        新賬戶的登錄 shell
groupadd web
useradd -M -s /sbin/nologin -g web php

安裝依賴,沒有l(wèi)ibmcrypt libmcrypt-devel mcrypt mhash的話,添加擴(kuò)展包,更新yum源

yum -y install epel-release
yum -y update
yum -y install libmcrypt libmcrypt-devel mcrypt mhash
yum -y install libxml2-devel libpng-devel libjpeg-devel zlib bzip2 bzip2-devel \
libtool-ltdl-devel pcre-devel openssl-devel freetype-devel libcurl-devel icu \
perl-libintl postgresql libicu-devel

下載php解壓

cd /usr/local/src/
wget http://cn2.php.net/distributions/php-5.6.27.tar.gz
tar -zxvf php-5.6.27.tar.gz
cd php-5.6.27/

安裝php

./configure \
--prefix=/usr/local/php5.6.27 \
--with-config-file-path=/usr/local/php5.6.27/etc/ \
--enable-inline-optimization \
--enable-shared \
--enable-opcache \
--enable-fpm \
--with-fpm-user=php \
--with-fpm-group=web \
--with-MySQL=mysqlnd \
--with-mysqli=mysqlnd \
--with-pdo-mysql=mysqlnd \
--with-gettext \
--enable-mbstring \
--with-iconv \
--with-mcrypt \
--with-mhash \
--with-openssl \
--enable-bcmath \
--enable-soap \
--with-libxml-dir \
--enable-pcntl \
--enable-shmop \
--enable-sysvmsg \
--enable-sysvsem \
--enable-sysvshm \
--enable-sockets \
--enable-intl \
--with-curl \
--with-zlib \
--enable-zip \
--with-bz2 \
--enable-xml \
--with-pcre-dir \
--with-gd \
--enable-static \
--enable-wddx \
--with-xmlrpc \
--with-libdir=/usr/lib64 \
--with-jpeg-dir=/usr/lib64 \
--with-freetype-dir=/usr/lib64 \
--with-png-dir=/usr/lib64
make && make install

配置 PHP

cp php.ini-development /usr/local/php5.6.27/etc/php.ini
cp /usr/local/php5.6.27/etc/php-fpm.conf.default /usr/local/php5.6.27/etc/php-fpm.conf

創(chuàng)建開機(jī)啟動

vi /lib/systemd/system/php-fpmd.service
[Unit]
Description=The PHP FastCGI Process Manager
After=network.target
[Service]
Type=forking
PIDFile=/run/php-fpm.pid
ExecStart=/usr/local/php5.6.27/sbin/php-fpm --daemonize -g /run/php-fpm.pid
ExecReload=/bin/kill -USR2 $MAINPID
ExecStop=/bin/kill -SIGINT $MAINPID
PrivateTmp=true
[Install]
WantedBy=multi-user.target

PS:如果yum安裝,php-fpm.service文件的內(nèi)容

[Unit]
Description=The PHP FastCGI Process Manager
After=syslog.target network.target
[Service]
Type=notify
PIDFile=/run/php-fpm.pid
EnvironmentFile=/etc/sysconfig/php-fpm
ExecStart=/usr/sbin/php-fpm --nodaemonize
ExecReload=/bin/kill -USR2 $MAINPID
PrivateTmp=true
[Install]

WantedBy=multi-user.target

添加運(yùn)行權(quán)限

chmod +x /lib/systemd/system/php-fpmd.service

設(shè)置開機(jī)自啟動

systemctl enable php-fpmd.service

運(yùn)行

systemctl start php-fpmd.service

停止

systemctl stop php-fpmd.service

重新加載

systemctl daemon-reload

刪除開機(jī)啟動

systemctl disable php-fpmd.service

到此,相信大家對“php5.6.27的安裝教程”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

名稱欄目:php5.6.27的安裝教程
網(wǎng)站路徑:http://www.rwnh.cn/article16/gopjdg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供自適應(yīng)網(wǎng)站、網(wǎng)站營銷網(wǎng)站維護(hù)、標(biāo)簽優(yōu)化網(wǎng)站設(shè)計公司、

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)公司
含山县| 普兰县| 乌鲁木齐县| 临泽县| 大名县| 汉源县| 沅江市| 穆棱市| 乌兰浩特市| 根河市| 彭阳县| 浮山县| 县级市| 鹤庆县| 贵德县| 军事| 贵阳市| 册亨县| 浪卡子县| 锡林郭勒盟| 九龙县| 龙江县| 米泉市| 凤翔县| 称多县| 新乡县| 高碑店市| 沂南县| 榆林市| 城市| 吴旗县| 邵武市| 寿阳县| 远安县| 兴隆县| 桐城市| 连平县| 防城港市| 莲花县| 新宾| 大丰市|