Comment installer php sur centos7.5 : 1. Ajoutez un utilisateur php pour exécuter le processus php-fpm ; 2. Décompressez le package de code source php ; 3. Installez les packages de dépendances ; 4. Copiez les fichiers de configuration pertinents dans php ; chemin d'installation.
L'environnement d'exploitation de cet article : système CentOS7.5, version php7.4.1, ordinateur DELL G3
Comment installer php sur centos 7.5 ?
CentOS-7.5 Compilez et installez php-7.4.1
Enregistrement de suivi : Généralement, yum est utilisé pour installer le package, qui est plus résistant à la compilation du code source. il a été installé avec succès~
Machine virtuelle : centos 7
Téléchargez le fichier source php-7.4.1 :wget https://www.php.net/distributions/php-7.4 .1.tar.gz
(En raison d'une erreur lors du téléchargement la moitié du temps sur le serveur, téléchargez-le localement et téléchargez-le sur le serveur scp php-7.4.1.tar.gz root@server ip:/ usr/local/)wget https://www.php.net/distributions/php-7.4.1.tar.gz
(由于在服务器上下载一半报错,改为本地下载,上传到服务器 scp php-7.4.1.tar.gz root@服务器ip:/usr/local/)
cd /usr/local/ useradd php -s /sbin/nologin
tar -zxf php-7.4.1.tar.gz
2. Démarrez l'installationyum install libxml2-devel sqlite-devel libcurl-devel oniguruma-devel libpng-devel libjpeg-devel freetype-devel libzip-devel openssl-devel -y
tar -zxf php-7.4.1. tar.gz
Installer les packages de dépendances
cd /usr/local/php-7.4.1
[root@iZ8vbice4h2bcujon9zc00Z php-7.4.1]# ./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --with-mhash --with-openssl --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-iconv --with-zlib --enable-inline-optimization --disable-debug --disable-rpath --enable-shared --enable-bcmath --enable-shmop --enable-sysvsem --enable-gd --with-jpeg --with-freetype --enable-mbregex --enable-mbstring --enable-ftp --enable-pcntl --enable-sockets --enable-soap --without-pear --with-gettext --enable-session --with-curl --enable-opcache --enable-fpm --with-fpm-user=php --with-fpm-group=php --without-gdbm --enable-fast-install --disable-fileinfo
[root@iZ8vbice4h2bcujon9zc00Z php-7.4.1]# make && make install
cd /usr/local/php-7.4.1/sapi/fpm/ cp init.d.php-fpm /usr/local/php/
3. Copiez les fichiers de configuration pertinents dans le chemin d'installation de PHP
. Script de démarrage : php-7.4.1/sapi/fpm/init.d.php- fpm
cd /usr/local/php-7.4.1 cp php.ini-production /usr/local/php/etc/php.ini
Fichier de configuration php.ini : php-7.4.8/php.ini-production
/usr/local/php/etc
Créer le php -fichier de configuration fpm.conf
Allez dans etc
[root@iZ8vbice4h2bcujon9zc00Z etc]# pwd /usr/local/php/etc [root@iZ8vbice4h2bcujon9zc00Z etc]# ls php-fpm.conf.default php-fpm.d php.ini [root@iZ8vbice4h2bcujon9zc00Z etc]# cp php-fpm.conf.default php-fpm.conf
[root@iZ8vbice4h2bcujon9zc00Z php-fpm.d]# pwd /usr/local/php/etc/php-fpm.d [root@iZ8vbice4h2bcujon9zc00Z php-fpm.d]# ls www.conf.default [root@iZ8vbice4h2bcujon9zc00Z php-fpm.d]# [root@iZ8vbice4h2bcujon9zc00Z php-fpm.d]# cp www.conf.default www.conf
Entrez dans le répertoire php-fpm.d et renommez les fichiers à l'intérieur
[root@iZ8vbice4h2bcujon9zc00Z php]# bash init.d.php-fpm start
Exécutez le script de démarrage init.d.php-fpm pour démarrer php-fpm
vim ~/.bash_profile
Edit .bash_profile
source ~/.bash_profile
Enfin, exécutez la commande
rrreeeAfficher la version PHP php -v
🎜🎜🎜🎜Étude recommandée : "🎜Tutoriel vidéo PHP🎜"🎜🎜🎜Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!