php - Cron sessionclean errors: find: `/proc/xxxxx/fd': No such file or directory -


after php upgrade started following cron errors several times day:

find: `/proc/xxxxx/fd': no such file or directory 

it comes php sessionclean cron job:

[ -x /usr/lib/php5/sessionclean ] && /usr/lib/php5/sessionclean 

any ideas?

there debian bug reported (and fixed) this.

it mentions release stable:

in next security upload, e.g. 2 weeks after 5.6.23 released, unless else critical shows up.

5.6.23 out, expect within next 2 weeks.

the fix there add

if [ -d "/proc/$pid/fd" ]; 

before the

find "/proc/$pid/fd" 

command.


Comments

Popular posts from this blog

javascript - Slick Slider width recalculation -

jsf - PrimeFaces Datatable - What is f:facet actually doing? -

angular2 services - Angular 2 RC 4 Http post not firing -