From cb14616a3214387c568d08c2bb8db289fbe18e97 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Elan=20Ruusam=C3=A4e?= Date: Thu, 17 Jan 2013 16:37:44 +0200 Subject: [PATCH] use /var/run for fpm pid files currently /var/run/php is cleaned up by php session cleanup script which cleans up everything in that dir, not only php session files so as consequence this removes php-fpm pidfiles and service restart remains confused what to stop. php-wsdl cache files get nuked by the same problem, so those could be moved to /var/cache/php, so they could survive reboots probably it's wrong to have /var/run/php as php-session storage (note the generic namem it's not /var/run/php/sessions etc), but changing that would need more efforts, as need to support old and new configuration, and each php sapi could have different config (they have different php.ini (or equivalent) files) --- php-fpm.init | 4 ++-- php-fpm.logrotate | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/php-fpm.init b/php-fpm.init index 3006f7e..6cc104a 100644 --- a/php-fpm.init +++ b/php-fpm.init @@ -8,7 +8,7 @@ # # processname: @processname@ # config: /etc/php/fpm.conf -# pidfile: /var/run/php/@processname@.pid +# pidfile: /var/run/@processname@.pid # # Source function library @@ -20,7 +20,7 @@ configfile=/etc/php/fpm.conf lockfile=/var/lock/subsys/@processname@ pidfile=$(sed -ne 's,.*"\?pid_file"\?>\([^<]\+\)<.*,\1,p' $configfile) -pidfile=${pidfile:-/var/run/php/@processname@.pid} +pidfile=${pidfile:-/var/run/@processname@.pid} start() { # Check if the service is already running? diff --git a/php-fpm.logrotate b/php-fpm.logrotate index 3bec7c1..b192547 100644 --- a/php-fpm.logrotate +++ b/php-fpm.logrotate @@ -1,5 +1,5 @@ -/var/log/fpm.log -/var/log/fpm-slow.log +/var/log/php/@processname@.log +/var/log/php/@processname@-slow.log { notifempty missingok -- 2.43.0