How to update Apache2 on Dedian 9 (Stretch)?

1

I am using version 2.4.10 of Apache, in Debian 9. However, this version of Apache, which I am using, is from Debian 8.

I would like to know how to upgrade Apache2 to version 2.4.25 >.

    
asked by anonymous 08.08.2017 / 00:04

1 answer

1

Type in your terminal as ROOT :

apt update
apt upgrade

Or if you want to upgrade only apache see the packages that need to be updated on your system with the command apt list --upgradable and then install apache-related packages, eg:

apt install apache2-bin/stable
    
20.09.2017 / 16:24