當前位置:首頁 » 編程語言 » centosphp版本

centosphp版本

發布時間: 2024-12-26 23:11:59

❶ centos通過yum安裝php的教程

先給大家介紹下centos通過yum安裝php
1、添加php的yum軟體倉庫
sudo rpm -Uvh https://mirror.webtatic.com/yum/el6/latest.rpm
2、安裝php相關軟體,執行過程中全部選擇yes即可
sudo yum install php71w.x86_64 php71w-cli.x86_64 php71w-common.x86_64 php71w-gd.x86_64 php71w-ldap.x86_64 php71w-mbstring.x86_64 php71w-mcrypt.x86_64 php71w-mysql.x86_64 php71w-pdo.x86_643、安裝php71-fpm
sudo yum install php71w-fpm.x86_64
等待安裝完成輸入php -version查看php版本
ps:下面看下CentOS 7下Yum安裝PHP7.2步驟
1、安裝源
安裝php72w,是需要配置額外的yum源地址的,否則會報錯不能找到相關軟體包。
php高版本的yum源地址,有兩部分,其中一部分是epel-release,另外一部分來自webtatic。如果跳過epel-release的話,安裝webtatic的時候,會有錯誤爆出。
所以,這里需要的命令是:
rpm -Uvh https://dl.Fedoraproject.org/pub/epel/7/x86_64/Packages/e/epel-release-7-11.noarch.rpm
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
當然,您也可以選擇下面的這個命令,也是一樣的效果。
yum install epel-release -y
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
2、清除歷史版本
為了防止CentOS上面發生php沖突,所以,這個命令還是先執行一下更好些。
yum -y remove php*
3、安裝擴展包
事實上,這裡面的對應擴展庫很多,這里大家一定要注意cli和fpm這兩個包,而其它的相關包就看您需要了。
yum -y install php72w php72w-cli php72w-fpm php72w-common php72w-devel還有比較豪華的版本:
yum -y install php72w php72w-cli php72w-fpm php72w-common php72w-devel php72w-embedded php72w-gd php72w-mbstring php72w-mysqlnd php72w-opcache php72w-pdo php72w-xml4、安裝完成以後,啟動服務
systemctl enable php-fpm.service
systemctl start php-fpm.service5、安裝成功
總結
以上所述是小編給大家介紹的centos通過yum安裝php的教程,希望對大家有所幫助!

❷ centos7安裝php

centos7系統源碼編譯安裝PHP7.3.5版本

新增系統用戶組和用戶:

下載PHP7.3.5

[root@localhost~]#mkdirdevdir

[root@localhost~]#cddevdir/腔李

[root@localhostdevdir]#wget

-bash:wget:未找到命令

[root@localhostdevdir]#rpm-qa|grepwget

[root@localhostdevdir]#yum-yinstallwget

[root@localhostdevdir]#rpm-qa|grepwget

wget-1.14-18.el7.x86_64

下載PHP7解壓編譯

wget-c

編譯參數解釋

--with-fpm-user=webu--with-fpm-group=webg添加PHP運行用戶和用戶組

配置信息出慶飢錯:

下載gcc軟體編譯器yuminstall-ygcc

configure:error:libxml2notfound..

下載libzip-1.5.2.tar.gz

解決libzip和cmake版本問題

重新配置PHP7編譯環境參數

libzip-1.5.2無法安裝譽圓返,已經取消了。

提示off_t類型沒有定義undefind,解決方法:

編譯安裝

測試PHP是否安裝成功

轉載自:

阿里雲默認centos7上怎麼安裝php

首先更新系統軟體/str

$yumupdate

安裝nginx/str/str

1.安裝nginx源

$yumlocalinstall.安裝nginx

$yuminstallnginx

3.啟動nginx

$servicenginxstart

Redirectingto/bin/systemctlstartnginx.service4.訪問http://你的ip/

如果成功安裝會出來nginx默認的歡迎界面

安裝MySQL5.7.*

/str

1.安裝mysql源/str

$yumlocalinstall.安裝mysql

$yuminstallmysql-community-server

確認一下mysql的版本,有時可能會提示mysql5.63.安裝mysql的開發包,以後會有用

$yuminstallmysql-community-devel

4.啟動mysql

$servicemysqldstart

Redirectingto/bin/systemctlstartmysqld.service5.查看mysql啟動狀態

$servicemysqldstatus

出現pid

證明啟動成功

6.獲取mysql默認生成的密碼

$grep'temporarypassword'/var/log/mysqld.log2015-12-05T05:41:09.104758Z1[Note]@localhost:%G1Rgns!dD!v/str

加粗的就是生成的密碼

7.換成自己的密碼

$mysql-uroot-p

Enterpassword:輸入上面的密碼

成功輸入後進入一下步,這里你估計會輸入好幾次才進去8.更換密碼

mysqlALTERUSER'root'李並@'localhost'IDENTIFIEDBY'MyNewPass4!'這個密碼一定要足夠復雜,不然會不讓你改,提示密碼不合法;9.退出mysql;

mysqlquit;

10.用新密碼再登錄,試一下新密碼

$mysql-uroot-p

Enterpassword:輸入你的新密碼

11.確認密碼正確後,退出mysql;

mysql哪衫跡quit;

編譯安裝php7.0.0

/str

/str

1.下載php7源碼包/str

$cd/rootwget-Ophp7.tar.gz.解壓源碼包/str

$tar-xvfphp7.tar.gz

3./str

$cdphp-7.0.1

4.安塌亂裝php依賴包/str

/str

$yuminstalllibxml2libxml2-developensslopenssl-develbzip2bzip2-devellibcurllibcurl-devellibjpeglibjpeg-devellibpnglibpng-develfreetypefreetype-develgmpgmp-devellibmcryptlibmcrypt-develreadlinereadline-devellibxsltlibxslt-devel5.編譯配置,這一步我們會遇到很多configureerror,我們一一解決,基本都是相關軟體開發包沒有安裝導致/str

/str

$./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

configureerror:

1.configure:error:xml2-confignotfound..

解決:

$yuminstalllibxml2libxml2-devel

2.configure:error:CannotfindOpenSSL'sevp.h

解決:

$yuminstallopensslopenssl-devel

3.configure:error:解決:

$yuminstallbzip2bzip2-devel

4.configure:error:-easy.hshouldbeincurl-dir/include/curl/解決:

$yuminstalllibcurllibcurl-devel

5.Ifconfigurefailstry--with-webp-dir=DIRconfigure:error:jpeglib.hnotfound.

解決:

$yuminstalllibjpeglibjpeg-devel

6.Ifconfigurefailstry--with-webp-dir=DIR

checkingforjpeg_read_headerin-ljpeg...yesconfigure:error:png.hnotfound.

解決:

$yuminstalllibpnglibpng-devel

7.Ifconfigurefailstry--with-webp-dir=DIR

checkingforjpeg_read_headerin-ljpeg...yescheckingforpng_write_imagein-lpng...yesIfconfigurefailstry--with-xpm-dir=DIR

configure:error:freetype-confignotfound.

解決:

$yuminstallfreetypefreetype-devel

8.configure:error:Unabletolocategmp.h解決:

$yuminstallgmpgmp-devel

9.configure:error:mcrypt.hnotfound.Pleasereinstalllibmcrypt.

解決:

$yuminstalllibmcryptlibmcrypt-devel

10.configure:error:Pleasereinstallreadline-Icannotfindreadline.h解決:

$yuminstallreadlinereadline-devel

11.configure:error:xslt-confignotfound.Pleasereinstallthelibxslt=1.1.0distribution解決:

$yuminstalllibxsltlibxslt-devel

6.編譯與安裝

$makemakeinstall

這里要make好久,要耐心一下

7.添加PHP命令到環境變數

$vim/etc/profile

在末尾加入

PATH=$PATH:/usr/local/php/bin

exportPATH

要使改動立即生效執行

$./etc/profile

$source/etc/profile

查看環境變數

$echo$PATH

查看php版本

$php-v

8.配置php-fpm

$cpphp.ini-proction/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//usr/local/php/etc/php-fpm.d/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

配置nginx虛擬機,綁定域名/str

1.

/str

$vim/etc/nginx/conf.d/php7.thinkcmf.com.conf這里可以把php7.thinkcmf.com.conf改成自己的域名把下面的內容復制到php7.thinkcmf.com.conf里server{

listen80;

server_namephp7.thinkcmf.com;

root/var/www/html/php7.thinkcmf.com;#該項要修改為你准備存放相關網頁的路徑location/{

indexindex.phpindex.htmlindex.htm;

#如果請求既不是一個文件,也不是一個目錄,則執行一下重寫規則if(!-e$request_filename)

{

#地址作為將參數rewrite到index.php上。

rewrite^/(.*)$/index.php/$1;

#若是子目錄則使用下面這句,將subdir改成目錄名稱即可。

#rewrite^/subdir/(.*)$/subdir/index.php/$1;}

}

#proxythephpscriptstophp-fpm

location~.php{

includefastcgi_params;

##pathinfo支持start

#定義變數$path_info,用於存放pathinfo信息set$path_info"";

#定義變數$real_script_name,用於存放真實地址set$real_script_name$fastcgi_script_name;#如果地址與引號內的正則表達式匹配

if($fastcgi_script_name~"^(.+?.php)(/.+)$"){#將文件地址賦值給變數$real_script_name

set$real_script_name$1;

#將文件地址後的參數賦值給變數$path_info

set$path_info$2;

}

#配置fastcgi的一些參數

fastcgi_paramSCRIPT_FILENAME$document_root$real_script_name;fastcgi_paramSCRIPT_NAME$real_script_name;fastcgi_paramPATH_INFO$path_info;

###pathinfo支持end

fastcgi_intercept_errorson;

fastcgi_pass127.0.0.1:9000;

}

}

2.重啟nginx

$servicenginxreload

3.

$vim/var/www/html/php7.thinkcmf.com/index.php/str

把下面的代碼復制到這個文件里

?php

phpinfo();

4.查看訪問

Centos7下PHP7最新版怎麼安裝

步驟1:檢查已安裝的內核版本#uname-sr步驟2:在CentOS7中升級內核接下來,安裝最新的主線穩定內核:#yum--enablerepo=elrepo-kernelinstallkernel-ml最後,重啟機器並應用最新內核,困森鏈接著運行下面的命令檢查汪孫最新內核版本還有一些代碼我不想打了,樓主就自己去後盾人看看吧對你很春盯有幫助的

=0.11)'>CentOS7編譯安裝PHP7.4提示Nopackage'libzip'found或者(libzip>=0.11)

編譯安裝PHP7.4提示Nopackage'libzip'found或者(libzip=0.11),原因凱稿是libzip沒有安裝或者版本太低,解決方法如枝鎮下:

安裝完成後,查看是否存在/usr/local/lib/pkgconfig目錄,如果存在,執行如下命令來設猛孫粗置PKG_CONFIG_PATH:

熱點內容
vivox20忘記密碼怎麼解鎖 發布:2024-12-27 13:46:00 瀏覽:814
sqlserver默認排序 發布:2024-12-27 13:45:50 瀏覽:974
安卓東西怎麼往蘋果上傳 發布:2024-12-27 13:27:36 瀏覽:129
圖片壓縮的app 發布:2024-12-27 13:25:35 瀏覽:106
設置對象存儲 發布:2024-12-27 13:25:24 瀏覽:707
現在玩lol要什麼配置 發布:2024-12-27 13:17:30 瀏覽:224
vs2012添加文件夾 發布:2024-12-27 13:01:27 瀏覽:899
c語言統計單詞數 發布:2024-12-27 12:58:09 瀏覽:57
手機服務密碼怎麼知道 發布:2024-12-27 12:51:44 瀏覽:465
oraclelinux使用 發布:2024-12-27 12:46:04 瀏覽:481