Thanks for the quick reply, PEBKAC eh
... well, i'm not afraid to fail anymore at this point ...
Google only returns a few results on "Warning: error redirecting stdin" "Warning: error redirecting stdout" , these are generated from hiawatha. The permission on /dev/null are unchanged and default as on other same OS sytems.
Restarted php-fpm , rebooted the system, same same.
http://fossies.org/linux/www/hiawatha-9.3.1.tar.gz:a/hiawatha-9.3.1/src/hiawatha.c
900 /* Redirecting I/O to /dev/null
901 */
902 if (settings->daemon) {
903 if (close(STDIN_FILENO) == -1) {
904 fprintf(stderr, "Warning: error closing STDIN\n");
905 } else if (open("/dev/null", O_RDONLY) == -1) {
906 fprintf(stderr, "Warning: error redirecting stdin\n");
907 }
908 if (close(STDOUT_FILENO) == -1) {
909 fprintf(stderr, "Warning: error closing STDOUT\n");
910 } else if (open("/dev/null", O_WRONLY) == -1) {
911 fprintf(stderr, "Warning: error redirecting stdout\n");
912 }
913 if (close(STDERR_FILENO) == -1) {
914 fprintf(stderr, "Warning: error closing STDERR\n");
915 } else if (open("/dev/null", O_WRONLY) == -1) {
916 log_string(config->system_logfile, "Warning: error redirecting stderr\n");
917 }
918 }