sammlinux sammlinux
  • Ubuntu
    UbuntuShow More
    How To Install and Use Docker CE on Ubuntu 22.04
    26 Min Read
    How To Install and Secure phpMyAdmin on Ubuntu 22.04
    5 Min Read
    How To Secure SSH with Fail2Ban on Ubuntu 22.04
    8 Min Read
    How To Install Uptime Kuma on Ubuntu 22.04
    17 Min Read
    How To Install Ubuntu Server 22.04 LTS with Screenshots
    14 Min Read
  • Rocky Linux
    Rocky LinuxShow More
    How To Install phpMyAdmin on Rocky Linux 9
    15 Min Read
    How To Secure SSH with Fail2Ban on Rocky Linux 9
    12 Min Read
    How To Install Rocky Linux 9.2 Server with Screenshots
    12 Min Read
    How To Set Up a Firewall Using FirewallD on Rocky Linux 9
    8 Min Read
    How To Install Nginx on Rocky Linux 9: A Comprehensive Guide
    10 Min Read
  • Debian
    DebianShow More
    How To Secure SSH with Fail2Ban on Debian 11
    8 Min Read
    How To Install Debian 11 (Bullseye) Server with Pictures
    12 Min Read
    How To Install and Setup Node.js on Debian 11
    6 Min Read
    How To Install PHP 8.2 on Debian 11
    12 Min Read
    How To Install Nginx on Debian 11: A Comprehensive Guide
    9 Min Read
  • Linux
    LinuxShow More
    Best Practices Linux Server Security for System Administrator
    8 Min Read
    A Simple Guide: How To Manage Groups on Linux
    5 Min Read
    How To Manage Log Files Using Logrotate In Linux
    7 Min Read
    The Easy Ways to Check File Size in Linux
    7 Min Read
    How To Backup Files From Remote Linux VPS Using Rsync Script
    12 Min Read
  • CentOS
    CentOSShow More
    How To Secure SSH with Fail2Ban on CentOS 7
    9 Min Read
    How To Install PHP 8.2 on CentOS 7 / RHEL 7
    18 Min Read
    How To Install Apache Web Server on CentOS 7
    11 Min Read
    How To Set Up a Firewall Using FirewallD on CentOS 7
    5 Min Read
    Initial Setup CentOS 7 Server: Secure and Efficient
    9 Min Read
  • DevOps
    DevOpsShow More
    How To Create AWS CloudFront: A Step-by-Step Guide
    10 Min Read
Reading: How To Install PHP 8.2 on Debian 11
Share
Font ResizerAa
Linux for BeginnersLinux for Beginners
  • Ubuntu
  • Rocky Linux
  • Debian
  • Linux
  • CentOS
  • DevOps
Search
  • Ubuntu
  • Rocky Linux
  • Debian
  • Linux
  • CentOS
  • DevOps
Follow US
Copyright © 2014-2023 Ruby Theme Ltd. All Rights Reserved.

How To Install PHP 8.2 on Debian 11

Samuel Siahaan
By Samuel Siahaan
Last updated: September 12, 2023
SHARE

If you’re into web development, PHP is undoubtedly a key player in your toolkit. The release of PHP 8.2 brings several exciting features and improvements. In this step-by-step guide, we will show you how to install PHP 8.2 on your Debian 11 system. Whether you’re a seasoned developer or just starting, getting your PHP development environment up and running smoothly is essential.

Contents
Table of ContentsWhy PHP 8.2 on Debian 11?Key Features PHP 8.2Install and Configure PHP 8.2 on Debian 11Step 1: Update Your SystemStep 2: Add PHP Repository on Debian 11Step 3: Install PHP 8.2Step 4: Verify PHP InstallationStep 5: Install Required PHP ExtensionsStep 6: Configure PHPStep 7: Using PHP 8.2 with Nginx/ Apache web serverPHP 8.2 application with Nginx web serverPHP 8.2 application with Apache web serverStep 8: Test PHP 8.2Conclusion

Table of Contents

  • Why PHP 8.2 on Debian 11?
  • Key Features PHP 8.2
  • Install and Configure PHP 8.2 on Debian 11
    • Step 1: Update Your System
    • Step 2: Add PHP Repository on Debian 11
    • Step 3: Install PHP 8.2
    • Step 4: Verify PHP Installation
    • Step 5: Install Required PHP Extensions
    • Step 6: Configure PHP
    • Step 7: Using PHP 8.2 with Nginx/ Apache web server
      • PHP 8.2 application with Nginx web server
      • PHP 8.2 application with Apache web server
    • Step 8: Test PHP 8.2
  • Conclusion

Why PHP 8.2 on Debian 11?

Before we dive into the installation process, let’s briefly discuss why PHP 8.2 on Debian 11 is a great choice. PHP 8.2 introduces various performance enhancements and new features, making it a valuable asset for web developers. Debian 11, on the other hand, is known for its stability and security, making it an ideal platform for hosting PHP applications.

Key Features PHP 8.2

Basically some key features and characteristics of PHP include:

  • Easy to Learn and Use: besides PHP has a relatively low learning curve, making it accessible to beginners.
  • Wide Platform Support: PHP is compatible with major operating systems like Windows, macOS, Linux, and various web servers such as Apache and Nginx. It can also connect to a wide range of databases, including MySQL, MariaDB, PostgreSQL, and more.
  • Extensive Library and Framework Ecosystem: PHP has a vast collection of libraries and frameworks that provide pre-built functions, classes, and components, saving development time and effort. Popular PHP frameworks include Laravel, Symfony, and CodeIgniter.
  • Web Development Capabilities: PHP enables various web development tasks, including form handling, file manipulation, session management, authentication and authorization, and integration with third-party APIs.

Install and Configure PHP 8.2 on Debian 11

Here’s a simple guide on how to install and configure PHP 8.2 on Debian 11. By following these steps, you can tap into the advantages it offers:

- Advertisement -

Step 1: Update Your System

Before you begin install PHP 8.2, it’s essential to ensure that your Debian 11 system is up to date. Open a terminal and run the following commands:

Bash
$ sudo apt update
$ sudo apt upgrade

By doing this, thus you’ll refresh your list of packages and update any installed packages to their most up-to-date versions.

Step 2: Add PHP Repository on Debian 11

To install PHP 8.2, you’ll need to add the PHP repository to your Debian 11 system. Use the following command:

Bash
$ sudo apt install -y software-properties-common
$ sudo add-apt-repository ppa:ondrej/php

This command adds the repository maintained by Ondřej Surý, which provides the latest PHP versions.

Step 3: Install PHP 8.2

Now that you’ve added the PHP repository, it’s time to install PHP 8.2. Run the following command:

- Advertisement -
Bash
$ sudo apt update
$ sudo apt install php8.2

This command fetches PHP 8.2 from the repository and installs it on your Debian 11 system.

Step 4: Verify PHP Installation

To confirm that PHP 8.2 has been successfully installed on your Debian 11, you can run the following command:

Bash
$ php -v

Correspondingly you should see output indicating that PHP 8.2 is installed on your Debian 11, along with some additional information about the PHP configuration.

- Advertisement -
Bash
PHP 8.2.8 (cli) (built: Jul 16 2023 11:01:56) (NTS)
Copyright (c) The PHP Group
Zend Engine v4.2.8, Copyright (c) Zend Technologies
    with Zend OPcache v8.2.8, Copyright (c), by Zend Technologies

Step 5: Install Required PHP Extensions

Depending on your specific development needs, you may need to install additional PHP 8.2 extensions on your Debian 11. You can search for available extensions using the following command:

Bash
$ sudo apt search php8.2-

Now that you should see output available extensions of PHP 8.2 on Debian 11.

Bash
.......
php8.2-memcached-dbgsym/bullseye 3.2.0++-1+0~20230622.54+debian11~1.gbp8f3995 amd64
  debug symbols for php8.2-memcached

php8.2-mongodb/bullseye,now 1.15.3-1+0~20230614.40+debian11~1.gbp73474f amd64
  MongoDB driver for PHP

php8.2-mongodb-dbgsym/bullseye 1.15.3-1+0~20230614.40+debian11~1.gbp73474f amd64
  debug symbols for php8.2-mongodb

php8.2-msgpack/bullseye,now 1:2.2.0~rc2-3+0~20230620.38+debian11~1.gbp2bc756 amd64
  PHP extension for interfacing with MessagePack

php8.2-msgpack-dbgsym/bullseye 1:2.2.0~rc2-3+0~20230620.38+debian11~1.gbp2bc756 amd64
  debug symbols for php8.2-msgpack

php8.2-mysql/bullseye,now 8.2.8-1+0~20230716.25+debian11~1.gbp5cf2f6 amd64
  MySQL module for PHP

php8.2-mysql-dbgsym/bullseye 8.2.8-1+0~20230716.25+debian11~1.gbp5cf2f6 amd64
  debug symbols for php8.2-mysql

php8.2-oauth/bullseye 2.0.7++-1+0~20230612.32+debian11~1.gbpc77731 amd64
  OAuth 1.0 consumer and provider extension

php8.2-oauth-dbgsym/bullseye 2.0.7++-1+0~20230612.32+debian11~1.gbpc77731 amd64
  debug symbols for php8.2-oauth

php8.2-odbc/bullseye 8.2.8-1+0~20230716.25+debian11~1.gbp5cf2f6 amd64
  ODBC module for PHP

php8.2-odbc-dbgsym/bullseye 8.2.8-1+0~20230716.25+debian11~1.gbp5cf2f6 amd64
  debug symbols for php8.2-odbc

php8.2-opcache/bullseye,now 8.2.8-1+0~20230716.25+debian11~1.gbp5cf2f6 amd64
........

To install a specific extension of PHP 8.2 on your Debian 11. Replace extension-name with the desired extension name. Use following command:

Bash
$ sudo apt install php8.2-extension-name

You can install multiple packages PHP 8.2 at the same time, and at the same time, you should think about installing the modules that are commonly needed based on these suggestions, use following command.

Bash
$ sudo apt-get install php8.2-{common,cli,fpm,mbstring,zip,pgsql,mysql,mongodb,redis,memcache,memcached,opcache,gd,mcrypt,apcu,curl,xml,xmlreader,bcmath,readline,sockets,imagick,bz2,pdo,dom}

When you run this command, it will lead to the installation of the following modules:

  • php8.2-cli – command interpreter, useful for testing PHP scripts from a shell or performing general shell scripting tasks
  • php8.2-common – documentation, examples, and common modules for PHP
  • php8.2-mysql – for working with MySQL databases
  • php8.2-zip – for working with compressed files
  • php8.2-gd – for working with images
  • php8.2-mbstring – used to manage non-ASCII strings
  • php8.2-curl – lets you make HTTP requests in PHP
  • php8.2-xml – for working with XML data
  • php8.2-bcmath – used when working with precision floats

Step 6: Configure PHP

On Debian 11 PHP 8.2 comes with a default configuration, but you may need to make adjustments based on your project requirements. The PHP configuration files are located in the /etc/php/8.2/ directory. You can use a text editor of your choice to edit these files.

Step 7: Using PHP 8.2 with Nginx/ Apache web server

We will explore configurations for both Nginx and Apache web servers to host your PHP 8.2 application on Debian 11.

PHP 8.2 application with Nginx web server

Explicitly in the case of Nginx, PHP code is commonly executed through a distinct process known as PHP-FPM (FastCGI Process Manager). First thing to remember PHP-FPM, operating as a daemon, actively awaits incoming PHP requests and processes them in dedicated instances. In this setup, Nginx’s role is to forward incoming requests to PHP-FPM, thus facilitating the actual execution process.

Before proceeding, ensure you have installed the Nginx web server.

Bash
$ sudo apt install nginx php8.2-fpm

Firstly, open up your Nginx server configuration. Then, inside the current ‘http’ block, add the following code block. This configuration will ensure that PHP requests are directed to PHP-FPM and executed smoothly.

Bash
$ sudo vi /etc/nginx/nginx.conf
Nginx
server {
    listen 80;
    server_name example.com;
    root /var/www/myweb;
    index index.php index.html;

    location ~ .php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/var/run/php/php8.2-fpm.sock;
    }
}

Then validate Nginx configuration is ok.

Bash
$ sudo nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

Then restart Nginx web server after the configuration.

Bash
$ sudo systemctl restart nginx

PHP 8.2 application with Apache web server

Within Apache, we can utilize an integrated module called mod_php to directly handle PHP code within the Apache process itself.

However, before proceeding, ensure you have installed the Apache web server package, as well as PHP and the Apache PHP module.

Bash
$ sudo apt install apache2 libapache2-mod-php8.2 

Afterwards enable mod_php module:

Bash
$ sudo a2enmod php8.2

Then restart Apache web server after the configuration with following command.

Bash
$ sudo systemctl restart apache2

Step 8: Test PHP 8.2

To ensure that PHP 8.2 is working correctly on your Debian 11, you can create a simple PHP file and run it in your web browser. Use the following command to create a new PHP file:

Bash
$ echo "<?php phpinfo(); ?>" > /var/www/html/phpinfo.php

This command creates a phpinfo.php file in the web server’s root directory. You can access this file in your web browser by entering http://localhost/phpinfo.php in the address bar. You should see a page displaying detailed information about your PHP configuration.

Install PHP 8.2 on Debian 11
info.php

Conclusion

Congratulations! You’ve successfully installed PHP 8.2 on your Debian 11 system. With PHP 8.2’s enhanced features and Debian 11’s stability, you’re well-equipped to tackle web development projects with confidence.

In this guide, as I have shown we covered the essential steps for installing PHP 8.2 on Debian 11, including updating your system, adding the PHP repository, installing PHP, verifying the installation, adding extensions, configuring PHP, and testing your setup. With PHP 8.2 at your disposal, you’re ready to explore its new features and enhance your web development projects. Happy coding!

Also Read Our Other Guides :

  • How To Install PHP 8.2 on Ubuntu Server 22.04
  • How To Install PHP8.2 on Rocky Linux 9
  • How To Install PHP 8.2 on CentOS 7 / RHEL 7
  • How To Install PHP 7.4 on Ubuntu 22.04
  • How To Install PHP 7.4 on Debian 11

Finally, now you have learned how to install PHP 8.2 on Debian 11.

TAGGED:ApacheDebianLampPHPPHP 8PHP 8.2PHP-FPMProgramming Language

Sign Up For Daily Newsletter

Be keep up! Get the latest breaking news delivered straight to your inbox.
[mc4wp_form]
By signing up, you agree to our Terms of Use and acknowledge the data practices in our Privacy Policy. You may unsubscribe at any time.
Share This Article
Facebook Copy Link Print
Previous Article How To Set Up a Firewall Using FirewallD on Rocky Linux 9
Next Article How To Install and Setup Node.js on Debian 11
Leave a Comment

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

How To Install and Secure phpMyAdmin on Ubuntu 22.04
Ubuntu
Install and Configure Docker Swarm Mode on Centos 7
CentOS
How To Install and Config Thumbor on Debian 10
Debian
How To Install MariaDB 10.6 on Debian 11 Server
Debian
How To Install MongoDB 6.0 on Debian 10 & 11
Debian

You Might Also Like

Ubuntu

How To Install and Configure Go (Golang) on Ubuntu 22.04

10 Min Read
Ubuntu

How To Install Java Using OpenJDK 17 on Ubuntu 22.04

10 Min Read
Debian

How To Set Up a Firewall with UFW on Debian 11

8 Min Read
Debian

How To Install MariaDB 10.9 on Debian 11 Server

17 Min Read
Debian

How To Install Redis on Debian 11 Server

14 Min Read
Rocky Linux

How To Install Varnish Cache for Nginx on Rocky Linux 9

14 Min Read
Debian

How To Secure SSH with Fail2Ban on Debian 11

8 Min Read
Debian

How To Install Debian 12 (Bookworm) Server with Screenshots

13 Min Read
Show More

Always Stay Up to Date

Subscribe to our newsletter to get our newest articles instantly!

sammlinux sammlinux

Providing beginner-friendly Linux tutorials and open-source guides to simplify your digital infrastructure.

www.sammlinux.com © 2026 | All Rights Reserved

Join Us!
Subscribe to our newsletter and never miss our latest news, podcasts etc.

Subscribe to our newsletter to get our newest articles instantly!

Zero spam, Unsubscribe at any time.
Welcome Back!

Sign in to your account

Username or Email Address
Password

Lost your password?