v4.109 (web6) und v4.118 (web7)
9-0.423 (Debian 11, 5.10.0-23-cloud-amd64) und 9-0.444 (Debian 11, 5.10.0-30-cloud-amd64)
Hallo zusammen,
seit 2 Tagen habe ich auf zwei Webservern mit unterschiedlichen Versionsständen verschiedene Probleme wenn OPcache in der php.ini aktiviert ist.
web7
Code
Jun 24 13:46:48 web7 FPM-iwonadbg-8.1.99-log: 1719229608.472452 Mon Jun 24 13:46:48 2024 (1): Fatal Error Unable to allocate shared memory segment of 12582912 bytes: mmap: Cannot allocate memory (12)
Wenn ich in den php.inis (für 8.1 und 8.2) folgendes ändere:
funktioniert es wieder - oder eben wenn ich OPcache rausnehme
web6
In den Logs tauchen keine Fehlermeldungen auf.
Hier habe ich urplötzlich in allen /service/FPM*
PHP
root@web6:/service/FPM-eaalbdbt-8.1.99# cat php.ini
auto_prepend_file = /service/FPM-eaalbdbt-8.1.99/prepend.php
root@web6:/service/FPM-eaalbdbt-8.1.99# cat prepend.php
<?php
Header ("Status: 500 PHP Configuration Error");
?>
<!DOCTYPE html>
<html>
<head>
<title>500 PHP Configuration Error</title>
</head>
<body>
<pre>
<p><b>500 PHP Configuration Error</b>
<p>PHP <?= phpversion() ?> konnte nicht im FPM-Modus gestartet werden. Vermutlich ein Konfigurationsproblem in der php.ini.
<p><em>PHP <?= phpversion() ?> could not be started in FPM mode. Most likely there is a configuration problem in the php.in.</em>
</pre>
</body>
</html>
<?php exit() ?>
Alles anzeigen
Wenn ich in den php.inis (8.1 und 8.2) folgendes ändere:
funktioniert es wieder, allerdings sind die prepend.php und der Eintrag in der php.ini immernoch vorhanden.
Ich bin ziemlich ratlos.
Hat sonst noch jemand das Problem und/oder eine Idee?