Heim > Artikel > Backend-Entwicklung > So lösen Sie das Problem des PHP5.4-Systemaktualisierungsfehlers
Lösungen für PHP5.4-System-Upgrade-Fehler: 1. Installieren Sie libmcrypt, libmcrypt-devel 2. Aktualisieren Sie die EPEL-Quelle.
Die Betriebsumgebung dieses Artikels: CentOS7.3-System, PHP5.4-Version, Dell G3-Computer.
Wie kann das Problem des PHP5.4-Systemaktualisierungsfehlers gelöst werden?
CentOS7 PHP5.4-Upgrade PHP5.6-Lösung für das Problem des fehlenden libmcrypt
Das System ist CentOS7.3. Nach der Installation von PHP ist die Version 5.4. Beim Upgrade auf 5.6 tritt ein Fehler auf: .4 fehlt (Fehler gemeldet) )(64bit) Bibliothek
muss libmcrypt installieren, libmcrypt-devel:
yum install libmcrypt libmcrypt-devel
Geben Sie den obigen Befehl direkt ein, Fehler! Das Problem besteht darin, dass die EPEL-Quelle nicht auf die neueste Version aktualisiert wurde.
EPEL-Quelle muss aktualisiert werden:
Befehl: yum -y install epel-release
yum -y install epel-release Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile * base: 100.125.0.40 * extras: 100.125.0.40 * updates: 100.125.0.40 * webtatic: us-east.repo.webtatic.com Resolving Dependencies --> Running transaction check ---> Package epel-release.noarch 0:7-9 will be updated ---> Package epel-release.noarch 0:7-11 will be an update --> Finished Dependency Resolution Dependencies Resolved ======================================================================================================== Package Arch Version Repository Size ======================================================================================================== Updating: epel-release noarch 7-11 extras 15 k Transaction Summary ======================================================================================================== Upgrade 1 Package Total download size: 15 k Downloading packages: Delta RPMs disabled because /usr/bin/applydeltarpm not installed. epel-release-7-11.noarch.rpm | 15 kB 00:00:00 Running transaction check Running transaction test Transaction test succeeded Running transaction Updating : epel-release-7-11.noarch 1/2 Cleanup : epel-release-7-9.noarch 2/2 Verifying : epel-release-7-11.noarch 1/2 Verifying : epel-release-7-9.noarch 2/2 Updated: epel-release.noarch 0:7-11 Complete!
Upgrade von 7-9 auf 7-11
Die neueste EPEL-Version ist 7-12, also geben Sie den obigen Befehl erneut ein:
yum -y install epel-release Loaded plugins: fastestmirror, langpacks epel/x86_64/metalink | 8.6 kB 00:00:00 epel | 5.4 kB 00:00:00 (1/3): epel/x86_64/updateinfo | 1.0 MB 00:00:00 (2/3): epel/x86_64/group_gz | 90 kB 00:00:01 (3/3): epel/x86_64/primary_db | 6.9 MB 00:01:00 Loading mirror speeds from cached hostfile * base: 100.125.0.40 * epel: mirrors.aliyun.com * extras: 100.125.0.40 * updates: 100.125.0.40 * webtatic: uk.repo.webtatic.com Resolving Dependencies --> Running transaction check ---> Package epel-release.noarch 0:7-11 will be updated ---> Package epel-release.noarch 0:7-12 will be an update --> Finished Dependency Resolution Dependencies Resolved ======================================================================================================== Package Arch Version Repository Size ======================================================================================================== Updating: epel-release noarch 7-12 epel 15 k Transaction Summary ======================================================================================================== Upgrade 1 Package Total download size: 15 k Downloading packages: Delta RPMs disabled because /usr/bin/applydeltarpm not installed. epel-release-7-12.noarch.rpm | 15 kB 00:00:00 Running transaction check Running transaction test Transaction test succeeded Running transaction Updating : epel-release-7-12.noarch 1/2 Cleanup : epel-release-7-11.noarch 2/2 Verifying : epel-release-7-12.noarch 1/2 Verifying : epel-release-7-11.noarch 2/2 Updated: epel-release.noarch 0:7-12
Komplettes Upgrade 7-12.
Installieren Sie
libmcrypt, libmcrypt-devel erneut:
yum install libmcrypt libmcrypt-devel
yum install libmcrypt libmcrypt-devel Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile * base: 100.125.0.40 * epel: my.mirrors.thegigabit.com * extras: 100.125.0.40 * updates: 100.125.0.40 * webtatic: uk.repo.webtatic.com Resolving Dependencies --> Running transaction check ---> Package libmcrypt.x86_64 0:2.5.8-13.el7 will be installed ---> Package libmcrypt-devel.x86_64 0:2.5.8-13.el7 will be installed --> Finished Dependency Resolution Dependencies Resolved ======================================================================================================== Package Arch Version Repository Size ======================================================================================================== Installing: libmcrypt x86_64 2.5.8-13.el7 epel 99 k libmcrypt-devel x86_64 2.5.8-13.el7 epel 13 k Transaction Summary ======================================================================================================== Install 2 Packages Total download size: 112 k Installed size: 302 k Is this ok [y/d/N]: y Downloading packages: (1/2): libmcrypt-2.5.8-13.el7.x86_64.rpm | 99 kB 00:00:00 (2/2): libmcrypt-devel-2.5.8-13.el7.x86_64.rpm | 13 kB 00:00:00 -------------------------------------------------------------------------------------------------------- Total 1.2 MB/s | 112 kB 00:00:00 Running transaction check Running transaction test Transaction test succeeded Running transaction Installing : libmcrypt-2.5.8-13.el7.x86_64 1/2 Installing : libmcrypt-devel-2.5.8-13.el7.x86_64 2/2 Verifying : libmcrypt-devel-2.5.8-13.el7.x86_64 1/2 Verifying : libmcrypt-2.5.8-13.el7.x86_64 2/2 Installed: libmcrypt.x86_64 0:2.5.8-13.el7 libmcrypt-devel.x86_64 0:2.5.8-13.el7 Complete!
Erfolg!
Endlich PHP aktualisieren, Befehl:
yum install -y php56w php56w-opcache php56w-xml php56w-mcrypt php56w-gd php56w-devel php56w-mysql php56w-intl php56w-mbstring
Empfohlenes Lernen: „PHP-Video-Tutorial“
Das obige ist der detaillierte Inhalt vonSo lösen Sie das Problem des PHP5.4-Systemaktualisierungsfehlers. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!