久久99国产精品片久久99蜜桃_久久精品99国产精品蜜桃_久久久亚洲AV成人网站_欧美精品色婷婷五月综合_亚洲精品乱码久久久久久蜜桃图片_夜夜高潮夜夜爽国产伦精品_69无人区乱码一二三四区别_日产一码二码三码区别_大香区一二三四区2021_国产精品爱久久久久久久,日本高清视频成人网www,国产亚洲一二三区精品免费视频观看,久久久精品国产SM调教网站

推廣 熱搜: 后臺  位置  帝國cms  網(wǎng)站  Wordpress教程  帝國cms建站  內容  DESTOON  郵箱  destoon7.0 

PHP7.4編譯安裝問題解決匯總

   日期:2023-02-01     來源:網(wǎng)絡收集    瀏覽:92    違規(guī)舉報
 
騰訊云服務器優(yōu)惠

PHP 7+ 版本極大地改進了性能,,在一些WordPress基準測試當中,,性能可以達到PHP 5.6的3倍,。而PHP 5.6版本在2018年底官方已經(jīng)不再維護,升級PHP 7是必然選擇,,但是在升級安裝過程中總會出現(xiàn)一些問題,,大部分因為升級的依賴插件函數(shù)沒有安裝完整,下面匯總了PHP7.4編譯安裝問題的解決辦法,,希望能給有需要的小伙伴帶來幫助,。


解決 configure: error: no acceptable C compiler found in $PATH 錯誤

yum install -y gcc gcc-c++

解決 error: the HTTP XSLT module requires the libxml2/libxslt 錯誤

yum -y install libxml2 libxml2-dev

yum -y install libxslt-devel
解決 error: the HTTP image filter module requires the GD library. 錯誤

yum -y install gd-devel
解決 error: the GeoIP module requires the GeoIP library. 錯誤

yum -y install GeoIP GeoIP-devel GeoIP-data
解決 error: the Google perftools module requires the Google perftools 錯誤

yum -y install gperftools
解決 error: libatomic_ops library was not found. 錯誤

yum -y install libuuid-devel libblkid-devel libudev-devel fuse-devel libedit-devel libatomic_ops-devel
解決 error trying to exec ‘cc1plus’: execvp: No such file or directory 錯誤

yum -y install gcc-c++
解決 error: [pool www] cannot get uid for user ‘www-data’ 錯誤

groupadd www-data
useradd -g www-data www-data
解決configure: error: mbed TLS libraries not found. 錯誤。

需要安裝mbedtls

CentOS 7/8 源碼安裝 mbedtls 2.16.3,, 解決configure: error: mbed TLS libraries not found. 錯誤,。

1、下載并解壓
wget https://tls.mbed.org/download/mbedtls-2.16.3-gpl.tgz
tar -xf mbedtls-2.16.3-gpl.tgz
cd mbedtls-2.16.3
備用下載地址:https://down.24kplus.com/linux/mbedtls/mbedtls-2.16.3-gpl.tgz

2、編譯安裝
make
make DESTDIR=/usr install
ldconfig
如果出現(xiàn) make[1]: python2: Command not found 錯誤,,執(zhí)行:

yum -y install python2
如果出現(xiàn) /usr/bin/env: ‘perl’: No such file or directory 錯誤,,執(zhí)行:

yum -y install perl

解決 error: Cannot find OpenSSL’s 錯誤

yum install openssl openssl-devel
ln -s /usr/lib64/libssl.so /usr/lib/
解決 error: Libtool library used but ‘LIBTOOL’ is undefined 錯誤

yum install libtool
解決 exec: g++: not found 錯誤

yum -y update gcc
yum -y install gcc+ gcc-c++
解決 configure: error: tss lib not found: libtspi.so 錯誤

yum install trousers-devel
解決 Can’t exec “autopoint”: No such file or directory 錯誤

yum install gettext gettext-devel gettext-common-devel
解決 configure: error: libcrypto not found. 錯誤

yum remove openssl-devel
yum -y install openssl-devel
解決 configure: error: Package requirements (libffi >= 3.0.0) were not met: No package ‘libffi’ found 錯誤

yum install libffi-devel
解決 fatal error: uuid.h: No such file or directory 錯誤

yum install e2fsprogs-devel uuid-devel libuuid-devel
解決 configure: error: openssl lib not found: libcrypto.so 錯誤

yum install openssl-devel
解決 tar (child): lbzip2: Cannot exec: No such file or directory 錯誤

yum -y install bzip2
解決 configure: error: C++ preprocessor “/lib/cpp” fails sanity check 錯誤

yum install gcc-c++
解決 configure: error: Please reinstall the BZip2 distribution 錯誤

yum install bzip2 bzip2-devel
解決 configure: error: cURL version 7.15.5 or later is required to compile php with cURL support 錯誤

yum install curl-devel
解決 configure: error: not found. Please provide a path to MagickWand-config or Wand-config program 錯誤

yum install ImageMagick-devel
解決 configure: error: no acceptable C compiler found in $PATH 錯誤

yum install gcc
解決 configure: error: Package requirements (icu-uc >= 50.1 icu-io icu-i18n) were not met: 錯誤

yum install libicu-devel
解決 configure: error: Package requirements (sqlite3 > 3.7.4) were not met: No package ‘sqlite3’ found 錯誤

yum install sqlite-devel
解決 configure: error: Package requirements (oniguruma) were not met: No package ‘oniguruma’ found 錯誤

yum install oniguruma oniguruma-devel
使用源代碼安裝。

wget https://github.com/kkos/oniguruma/archive/v6.9.4.tar.gz -O oniguruma-6.9.4.tar.gz
tar -zxvf oniguruma-6.9.4.tar.gz
cd oniguruma-6.9.4/
./autogen.sh
./configure
make
sudo make install
解決 bash: make: 未找到命令…

需要安裝gcc,,執(zhí)行一下就可以了:

yum -y install gcc automake autoconf libtool make
yum install gcc gcc-c++
解決 configure: error: Package requirements (libzip >= 0.11 libzip != 1.3.1 libzip != 1.7.0) were not met:

Package ‘libzip’, required by ‘virtual:world’, not found
Package ‘libzip’, required by ‘virtual:world’, not found
Package ‘libzip’, required by ‘virtual:world’, not found

第一步:

rpm -q libzip rpm -q libzip-devel 查看是否有安裝過,,如果有,卸載它,。yum remove libzip-devel libzip

第二步:

下載

wget https://libzip.org/download/libzip-1.7.3.tar.gz
解壓:tar -xvf libzip-1.7.3.tar.gz
安裝cmake3:yum install -y cmake3
sudo ln -sf /usr/bin/cmake3 /usr/bin/cmake
安裝libzip:

cd libzip-1.7.3/
mkdir build && cd build
cmake …
make && make install
源碼地址

https://pkgs.org/search/?q=libzip

通過源碼安裝

yum install http://mirror.centos.org/centos/8/AppStream/x86_64/os/Packages/libzip-1.5.2-1.module_el8.2.0+314+53b99e08.x86_64.rpm
yum install http://mirror.centos.org/centos/8/AppStream/x86_64/os/Packages/libzip-devel-1.5.2-1.module_el8.2.0+314+53b99e08.x86_64.rpm

解決 No package ‘libxml-2.0’ found缺失libxml2.0 庫,,錯誤:

yum -y install libxml2

yum -y install libxml2-devel

解決 configure: error: Package requirements (libxslt >= 1.1.0) were not met:No package ‘libxslt’ found 錯誤

yum install libxslt-devel

解決 configure: error: Package requirements (libpng) were not met:No package ‘libpng’ found 錯誤

yum install libpng-devel

解決 configure: error: Cannot find ldap.h 錯誤

yum install openldap

yum install openldap-devel

解決 configure: error: Cannot find ldap libraries in /usr/lib 錯誤

cp -frp /usr/lib64/libldap* /usr/lib/

解決 configure: error: Package requirements (libcurl >= 7.15.5) were not met: 錯誤

yum install libcurl-devel

解決 configure: error: Package requirements (krb5-gssapi krb5) were not met:

yum -y install krb5-devel

解決 configure: error: Package requirements (libjpeg) were not met:

yum install -y libjpeg-devel

解決:No package 'libjpeg' found

yum install libjpeg libjpeg-devel,提示你“[y/d/N]”的時候輸入“y”回車即可完成安裝libjpeg包

解決 configure: error: Package requirements (freetype2) were not met:

yum -y install freetype freetype-devel
解決 configure: error: Package requirements (libpcre2-8 >= 10.30) were not met:

wget https://ftp.pcre.org/pub/pcre/pcre2-10.35.tar.gz
tar xzvf pcre2-10.35.tar.gz
cd pcre2-10.35

./configure --prefix=/usr/local/pcre2
–enable-pcre2-16
–enable-pcre2-32
–enable-jit
–enable-jit-sealloc

make && make install

export PKG_CONFIG_PATH=/usr/local/pcre2/lib/pkgconfig/

轉自:https://df-l.com/230.html



免責聲明:
1,、本站所收集的部分公開資料來源于互聯(lián)網(wǎng),,轉載的目的在于傳遞更多信息及用于網(wǎng)絡分享,并不代表本站贊同其觀點和對其真實性負責,,也不構成任何其他建議,。
2、本站部分作品內容是由網(wǎng)友自主投稿和發(fā)布,、編輯整理上傳,,對此類內容本站僅提供交流平臺,不為其版權負責,,更不為其觀點承擔任何責任,。
3、因行業(yè)及專業(yè)性有限,,故未能核驗會員發(fā)布內容的真實性及有效性,,不為其負責,如有虛假或違規(guī)內容敬請準備材料圖片發(fā)郵件到info@n#舉報,,本站核實后積極配合刪除,。
4、如果您發(fā)現(xiàn)網(wǎng)站上有侵犯您的知識產(chǎn)權的作品,,請與我們取得聯(lián)系,,我們會及時處理或刪除。
 
打賞
 
更多>同類網(wǎng)站技術
0相關評論

推薦圖文
推薦網(wǎng)站技術
點擊排行
網(wǎng)站首頁  |  關于我們  |  聯(lián)系方式  |  使用協(xié)議  |  免責聲明  |  版權隱私  |  信息發(fā)布規(guī)則  |  網(wǎng)站地圖  |  排名推廣  |  廣告服務  |  積分換禮  |  網(wǎng)站留言  |  RSS訂閱  |  違規(guī)舉報  |  粵ICP備2020081222號
Powered By DESTOON