Heim > Artikel > Backend-Entwicklung > Wie installiere ich PHP auf CentOS?
Schritte zur Installation von PHP auf CentOS:
1. Yum-Bibliothek konfigurieren
Zuerst müssen die Remi- und EPEL-Yum-Repositorys auf dem System aktiviert werden. Verwenden Sie den folgenden Befehl, um das EPEL-Repository auf dem CentOS-System zu installieren
Verwenden Sie diesen Befehl, um das Epel-Release-Yum-Repository zu installieren
# yum install epel-release
Führen Sie nun einen der folgenden Befehle entsprechend Ihrer Betriebssystemversion aus, um den Remi-Speicher zu installieren Bibliothek.
$ rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
2. Installieren Sie PHP 7 auf CentOS 6
Ihr System ist bereit, PHP aus dem Yum-Repository zu installieren. Verwenden Sie einen der folgenden Befehle, um je nach Bedarf PHP 7.3 oder PHP 7.2 oder PHP 7.1 auf Ihrem System zu installieren.
## 安装PHP 7.3 $ yum --enablerepo=remi-php73 install php ## 安装PHP 7.2 $ yum --enablerepo=remi-php72 install php ## 安装PHP 7.1 $ yum --enablerepo=remi-php71 install php
Ich habe die neueste Version von PHP 7.3 auf meinem System installiert. Führen Sie nun den folgenden Befehl aus, um die aktuell verwendete PHP-Version Ihres Systems zu überprüfen.
$ php -v PHP 7.3.0 (cli) (built: Dec 4 2018 16:12:20) ( NTS ) Copyright (c) 1997-2018 The PHP Group Zend Engine v3.3.0-dev, Copyright (c) 1998-2018 Zend Technologies
PHP-Module installieren
Möglicherweise müssen Sie je nach Anwendungsanforderungen auch zusätzliche PHP-Module installieren.
Die folgenden Befehle installieren einige nützliche PHP-Module.
### For PHP 7.3 $ yum --enablerepo=remi-php73 install php-xml php-soap php-xmlrpc php-mbstring php-json php-gd php-mcrypt ### For PHP 7.2 $ yum --enablerepo=remi-php72 install php-xml php-soap php-xmlrpc php-mbstring php-json php-gd php-mcrypt ### For PHP 7.1 $ yum --enablerepo=remi-php71 install php-xml php-soap php-xmlrpc php-mbstring php-json php-gd php-mcrypt
Sie können den folgenden Befehl ausführen, um im konfigurierten Yum-Repository nach anderen verfügbaren PHP-Modulen zu suchen.
Der folgende Beispielbefehl durchsucht alle Module nach PHP 7.3.
$ yum --enablerepo=remi-php73 search php | grep php73 php73.x86_64 : Package that installs PHP 7.3 php73-php.x86_64 : PHP scripting language for creating dynamic web sites php73-php-bcmath.x86_64 : A module for PHP applications for using the bcmath php73-php-brotli.x86_64 : Brotli Extension for PHP php73-php-cli.x86_64 : Command-line interface for PHP php73-php-common.x86_64 : Common files for PHP ... ...
Weitere PHP-bezogene Kenntnisse finden Sie auf der PHP-Chinese-Website!
Das obige ist der detaillierte Inhalt vonWie installiere ich PHP auf CentOS?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!