Upgrade Ubuntu from 22.04 to 24.04

Warning

THIS IS A DRAFT DOCUMENT, DO NOT APPLY IT ON PRODUCTION SERVER.

Attention

Check out the lightweight on-premises email archiving software developed by iRedMail team: Spider Email Archiver.

Upgrade iRedMail to the latest stable release first

Before upgrading server OS, it's better upgrade iRedMail to the latest stable release first. You can find all upgrade tutorials here.

Upgrade OS

After you have latest iRedMail release running, it's ok to upgrade server OS with command do-release-upgrade now.

Re-upgrade iRedAPD, iRedAdmin(-Pro), mlmmjadmin to the latest release

Attention

Ubuntu 24.04 ships Python 3.12 which removes module asynchat, but it's required by iRedAPD. Please upgrade iRedAPD to at least 5.5.0 to get it working with Python 3.12.

After upgraded server OS, please re-upgrade iRedAPD, iRedAdmin(-Pro) and mlmmjadmin even you're already running the latest versions before upgrading OS, their upgrade scripts will help fix some issues caused by OS upgrade.

mkdir /var/log/php-fpm
[inet]
user = www-data
group = www-data

listen = 127.0.0.1:9999
listen.owner = www-data
listen.group = www-data
listen.mode = 0660

; IP addresses must be separated by comma, and no space between comma and ip.
listen.allowed_clients = 127.0.0.1

pm = dynamic
pm.max_children = 200
pm.start_servers = 10
pm.min_spare_servers = 5
pm.max_spare_servers = 10
pm.max_requests = 500

pm.status_path = /php-fpm-status
ping.path = /php-fpm-ping

request_terminate_timeout = 60s

access.log = /var/log/php-fpm/access.log
slowlog = /var/log/php-fpm/slow.log
request_slowlog_timeout = 10s
upstream php_workers {
    server 127.0.0.1:9999;
}
service php8.3-fpm restart
service nginx restart