Ubuntu Upgrade Jammy To Noble: Difference between revisions

From MK Wiki EN
Jump to navigation Jump to search
(Added "When running inside an LXC container")
m (Improved formatting)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
Upgrading Ubuntu from Jammy Jellyfish/22.04 to Noble Numbat/24.04
Upgrading Ubuntu from '''Jammy Jellyfish/22.04''' to '''Noble Numbat/24.04'''


== Apache ==
== Apache ==
Line 7: Line 7:
  systemctl edit apache2.service
  systemctl edit apache2.service


[Service]
[Service]
PrivateDevices=false
PrivateDevices=false
PrivateTmp=false
PrivateTmp=false
ProtectControlGroups=false
ProtectControlGroups=false
ProtectKernelModules=false
ProtectKernelModules=false
ProtectSystem=false
ProtectSystem=false


=== PHP ===
=== PHP ===

Latest revision as of 12:01, 4 June 2026

Upgrading Ubuntu from Jammy Jellyfish/22.04 to Noble Numbat/24.04

Apache

When running inside an LXC container

systemctl edit apache2.service
[Service]
PrivateDevices=false
PrivateTmp=false
ProtectControlGroups=false
ProtectKernelModules=false
ProtectSystem=false

PHP

a2dismod php8.1
apt install libapache2-mod-php8.3
a2enmod php8.3
systemctl restart apache2