Cara memasang php pada centos7.5: 1. Tambah pengguna php untuk menjalankan proses php-fpm; 2. Buka zip pakej kod sumber php; Laluan pemasangan sudah mencukupi.
Persekitaran pengendalian artikel ini: Sistem CentOS7.5, versi php7.4.1, komputer DELL G3
Cara memasang php dalam centos 7.5?
CentOS-7.5 Susun dan pasang php-7.4.1
Rekod perjalanan: Secara amnya, yum digunakan untuk memasang pakej, yang lebih tahan terhadap penyusunan kod sumber Saya mencari di Baidu dan berjaya memasangnya~
Muat turun fail sumber php-7.4.1:
(Disebabkan ralat semasa memuat turun separuh jalan pada pelayan, muat turunnya secara setempat dan muat naik ke pelayan scp php- 7.4.1.tar.gz root@server ip:/ usr/local/)wget https://www.php.net/distributions/php-7.4.1.tar.gz
2. Mulakan pemasangan
cd /usr/local/ useradd php -s /sbin/nologin
tar -zxf php-7.4.1.tar.gz
Pasang pakej pergantunganyum install libxml2-devel sqlite-devel libcurl-devel oniguruma-devel libpng-devel libjpeg-devel freetype-devel libzip-devel openssl-devel -y
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
Penyusunan dan pemasangan selesai
3. Salin fail konfigurasi yang berkaitan ke laluan pemasangan PHP
cd /usr/local/php-7.4.1/sapi/fpm/ cp init.d.php-fpm /usr/local/php/
cd /usr/local/php-7.4.1 cp php.ini-production /usr/local/php/etc/php.ini
Pergi ke dll di bawah laluan pemasangan php
/usr/local/php/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
Mulakan php-fpm
Laksanakan skrip permulaan init.d.php-fpm dan mulakan php-fpm
[root@iZ8vbice4h2bcujon9zc00Z php]# bash init.d.php-fpm start
Edit .bash_profile
vim ~/.bash_profile
Akhir sekali, jalankan perintah
source ~/.bash_profile
Ujinya: vim test.php
Kajian yang disyorkan: "
Tutorial video PHPAtas ialah kandungan terperinci Bagaimana untuk memasang php pada centos 7.5. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!