Image

Base de conocimientos → Instalar o actualizar php 7.4 a php 8.2 en Linux Debian 11

[Servidores virtuales]
Fecha de publicación: 04.12.2022

En esta guía, actualizaremos php 7.4 a php 8.2 en el sistema operativo Linux Debian 11. Si instala php desde cero, los pasos serán similares. En este ejemplo, usamos php-fpm junto con nginx como servidor web.

1. Conectemos el repositorio

apt -y install lsb-release apt-transport-https ca-certificates wget
wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg
echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/php.list

2. Actualizar paquetes e instalar php 8.2 y php8.2-fpm

apt update
apt upgrade
apt install php8.2-fpm
apt install php8.2-common php8.2-mysql php8.2-xml php8.2-xmlrpc php8.2-curl php8.2-gd php8.2-imagick php8.2-cli php8.2-dev php8.2-imap php8.2-mbstring php8.2-opcache php8.2-soap php8.2-zip php8.2-redis php8.2-intl

3. Hagamos cambios en el archivo de configuración de nginx

/etc/nginx/conf.d/domain.tld.conf

Encontremos la línea:

fastcgi_pass unix:/run/php/php7.4-fpm.sock;

Vamos a reemplazarlo con:

fastcgi_pass unix:/run/php/php8.2-fpm.sock;

Reinicie los servicios y también apague el antiguo php7.4-fpm si está disponible y encienda el nuevo php8.2-fpm

systemctl disable php7.4-fpm
systemctl enable php8.2-fpm
systemctl stop php7.4-fpm
systemctl restart php8.2-fpm
service nginx restart

Listo, configuración completada.





Sin comentarios aún