Image

Bilgi Veritabanı → Linux Debian 11'de php 7.4'ten php 8.1'e Kurulum veya Güncelleme

[Virtual sunucular]
Yayın tarihi: 06.12.2022

Bu kılavuzda, Linux Debian 11 işletim sisteminde php 7.4'ü php 8.1'e güncelleyeceğiz. Eğer php'yi sıfırdan kuruyorsanız, adımlar aynı olacaktır. Bu örnekte, web sunucusu olarak nginx ile birlikte php-fpm kullanıyoruz.

1. Depoyu ekleyelim

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. Paketleri güncelleyelim ve php 8.1 ile php8.1-fpm'yi kuralım

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

3. nginx yapılandırma dosyasını değiştirelim

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

Satırı bulun:

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

Şu şekilde değiştirin:

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

Servisleri yeniden başlatalım, varsa eski php7.4-fpm'yi devre dışı bırakıp yeni php8.1-fpm'yi etkinleştirelim

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

Tamamdır, yapılandırma tamamlandı.





No Comments Yet