windows下的Nginx和php搭配 php-cgi.exe自動關閉退出解決方案

來源:互聯網
上載者:User

http://down.chinaz.com/server/201111/1334_1.htm

     php-cgi.exe在windows+nginx平台下經常自動結束,網上搜到的大部分解決方案都是類似上面的批處理(代碼如下)檔案臨時解決一下,但如果使用者在網站登入的話,使用者就會突然掛掉。

一個批次檔

@echo off:mainset jinchengshuliang=0set jinchengshuliangxiaxian=2for /f %%i in ('tasklist /nh^|findstr /i /s /c:"php-cgi.exe"') do set /a jinchengshuliang+=1if %jinchengshuliang% lss %jinchengshuliangxiaxian% (   goto youwenti) else (goto meiwenti)  :youwentiecho 進程丟失,現在添加5個進程RunHiddenConsole.exe  php\php-cgi.exe -b 127.0.0.1:9000 -c php\php.iniRunHiddenConsole.exe  php\php-cgi.exe -b 127.0.0.1:9000 -c php\php.iniRunHiddenConsole.exe  php\php-cgi.exe -b 127.0.0.1:9000 -c php\php.iniRunHiddenConsole.exe  php\php-cgi.exe -b 127.0.0.1:9000 -c php\php.iniRunHiddenConsole.exe  php\php-cgi.exe -b 127.0.0.1:9000 -c php\php.iniping 127.1 -n 8goto main:meiwentiecho 正常運行中!ping 127.1 -n 8goto main
最好的解決辦法是用windows下的php-cgi進程管理器,該進程管理器需要用到pthreadGC2.dll。源碼和編譯檔案在本文結尾提供下載。經測試,支援Win32和Linux-x86平台。對於用php的人,有了這個東西來 維護 一定數量的進程,就能制服經常崩潰退出的php-cgi啦。


以下是xxfpm進程管理器的巨集指令引數:

Usage: xxfpm path [-n number] [-i ip] [-p port]Manage FastCGI processes.-n, --number number of processes to keep-i, --ip ip address to bind-p, --port port to bind, default is 8000-u, --user start processes using specified linux user-g, --group start processes using specified linux group-r, --root change root direcotry for the processes-h, --help output usage information and exit-v, --version output version information and exit

  第一個寫得比較標準的終端應用程式,我是看了cygwin的裡的一些原始碼,然後學會了如何使用getopt,算是寫得比較標準的,但是代碼也不短。

使用例子:

xxfpm z:/php5/php-cgi.exe -n 5 -p 8080

  有人問,如何給程式加入參數。這個不難,使用雙引號即可,路徑要用"/"而不用"\"。例如要指定php.ini的路徑,可以用下面例子:

xxfpm "z:/php5/php-cgi.exe -c z:/php5/php.ini" -n 5 -i 127.0.0.1 -p 8080

維護進程原理:

  Windows上使用CreateProcess建立進程,使用Wait For Single Object等待進程結束;Linux上使用fork和execl建立進程,使用waitpid等待進程結束。Linux的版本多了在建立子進程的時候可以設定進程限制,能夠以受限使用者方式來運行。

  當進程管理器被關閉的時候,它所建立的所有子進程也必須被關閉。Windows上使用JobObject這個東西來把子進程與管理器的進程產生關聯,感謝iceboy提供的資料。Linux上通過捕捉關閉訊號,然後給所有子進程發送SIGTERM來結束子進程。詳見原始碼:

#ifdef __WIN32__#ifndef _WIN32_WINNT#define _WIN32_WINNT 0x0500#endif //_WIN32_WINNT#include <windows.h>#include <winsock.h>#include <wininet.h>#define SHUT_RDWR SD_BOTH#ifndef JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE#define JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE (0x2000)#endifHANDLE FcpJobObject;#else#include <sys/socket.h>#include <sys/wait.h>#include <fcntl.h>#include <arpa/inet.h>#include <grp.h>#include <pwd.h>#include <unistd.h>#define closesocket close#endif //__WIN32__#include <stdio.h>#include <stdlib.h>#include <getopt.h>#include <string.h>#include <pthread.h>#include <errno.h>#define MAX_PROCESSES 1024static const char version[] = "$Revision: 0.01 $";static char* prog_name;int number = 1;int port = 8000;char *ip = "127.0.0.1";char *user = "";char *root = "";char *path = "";char *group = "";int listen_fd;struct sockaddr_in listen_addr;int process_fp[MAX_PROCESSES];int process_idx = 0;pthread_t threads[MAX_PROCESSES];static struct option longopts[] ={ {"help", no_argument, NULL, 'h'}, {"version", no_argument, NULL, 'v'}, {"number", required_argument, NULL, 'n'}, {"ip", required_argument, NULL, 'i'}, {"port", required_argument, NULL, 'p'}, {"user", required_argument, NULL, 'u'}, {"group", required_argument, NULL, 'g'}, {"root", required_argument, NULL, 'r'}, {NULL, 0, NULL, 0}};static char opts[] = "hvnipugr";static void usage(FILE* where){ fprintf(where, ""  "Usage: %s path [-n number] [-i ip] [-p port]\n"  "Manage FastCGI processes.\n"  "\n"  " -n, --number  number of processes to keep\n"  " -i, --ip      ip address to bind\n"  " -p, --port    port to bind, default is 8000\n"  " -u, --user    start processes using specified linux user\n"  " -g, --group   start processes using specified linux group\n"  " -r, --root    change root direcotry for the processes\n"  " -h, --help    output usage information and exit\n"  " -v, --version output version information and exit\n"  "", prog_name); exit(where == stderr ? 1:0);}static void print_version(){ printf("%s %s\n\FastCGI Process Manager\n\Copyright 2010 Xiaoxia.org\n\Compiled on %s\n\", prog_name, version, __DATE__); exit(0);}static int try_to_bind(){ listen_addr.sin_family = PF_INET; listen_addr.sin_addr.s_addr = inet_addr( ip ); listen_addr.sin_port = htons( port ); listen_fd = socket(AF_INET, SOCK_STREAM, 0);  if (-1 == bind(listen_fd, (struct sockaddr*)&listen_addr, sizeof(struct sockaddr_in)) ) {  fprintf(stderr, "failed to bind %s:%d\n", ip, port );  return -1; }  listen(listen_fd, MAX_PROCESSES); return 0;}static void* spawn_process(void* arg){ int idx = process_idx ++, ret; while(1){#ifdef __WIN32__  STARTUPINFO si={0};  PROCESS_INFORMATION pi={0};  ZeroMemory(&si,sizeof(STARTUPINFO));  si.cb = sizeof(STARTUPINFO);  si.dwFlags = STARTF_USESTDHANDLES;  si.hStdInput  = (HANDLE)listen_fd;  si.hStdOutput = INVALID_HANDLE_VALUE;  si.hStdError  = INVALID_HANDLE_VALUE;  if(0 == (ret=CreateProcess(NULL, path,   NULL,NULL,   TRUE, CREATE_NO_WINDOW | CREATE_SUSPENDED | CREATE_BREAKAWAY_FROM_JOB,   NULL,NULL,   &si,&pi)) ){   fprintf(stderr, "failed to create process %s, ret=%d\n", path, ret);   return NULL;  }    /* Use Job Control System */  if(!AssignProcessToJobObject(FcpJobObject, pi.hProcess)){   TerminateProcess(pi.hProcess, 1);   CloseHandle(pi.hProcess);   CloseHandle(pi.hThread);   return NULL;  }    if(!ResumeThread(pi.hThread)){   TerminateProcess(pi.hProcess, 1);   CloseHandle(pi.hProcess);   CloseHandle(pi.hThread);   return NULL;  }    process_fp[idx] = (int)pi.hProcess;  WaitForSingleObject(pi.hProcess, INFINITE);  process_fp[idx] = 0;  CloseHandle(pi.hThread);#else  ret = fork();  switch(ret){  case 0:{ //child   /* change uid from root to other user */   if(getuid()==0){                 struct group *grp = NULL;                struct passwd *pwd = NULL;    if (*user) {     if (NULL == (pwd = getpwnam(user))) {      fprintf(stderr, "[fcgi] %s %s\n", "can't find username", user);      exit(-1);     }     if (pwd->pw_uid == 0) {      fprintf(stderr, "[fcgi] %s\n", "what? dest uid == 0?" );      exit(-1);     }    }    if (*group) {     if (NULL == (grp = getgrnam(group))) {      fprintf(stderr, "[fcgi] %s %s\n", "can't find groupname", group);      exit(1);     }     if (grp->gr_gid == 0) {      fprintf(stderr, "[fcgi] %s\n", "what? dest gid == 0?" );      exit(1);     }     /* do the change before we do the chroot() */     setgid(grp->gr_gid);     setgroups(0, NULL);     if (user) {      initgroups(user, grp->gr_gid);     }    }    if (*root) {     if (-1 == chroot(root)) {      fprintf(stderr, "[fcgi] %s %s\n", "can't change root", root);      exit(1);     }     if (-1 == chdir("/")) {      fprintf(stderr, "[fcgi] %s %s\n", "can't change dir to", root);      exit(1);     }    }    /* drop root privs */    if (*user) {     setuid(pwd->pw_uid);    }   }      int max_fd = 0, i=0;   // Set stdin to listen_fd   close(STDIN_FILENO);   dup2(listen_fd, STDIN_FILENO);   close(listen_fd);   // Set stdout and stderr to dummy fd   max_fd = open("/dev/null", O_RDWR);   close(STDERR_FILENO);   dup2(max_fd, STDERR_FILENO);   close(max_fd);   max_fd = open("/dev/null", O_RDWR);   close(STDOUT_FILENO);   dup2(max_fd, STDOUT_FILENO);   close(max_fd);   // close other handles   for(i=3; i<max_fd; i++)    close(i);   char *b = malloc(strlen("exec ") + strlen(path) + 1);   strcpy(b, "exec ");   strcat(b, path);      /* exec the cgi */   execl("/bin/sh", "sh", "-c", b, (char *)NULL);   exit(errno);   break;  }  case -1:   fprintf(stderr, "[fcgi] fork failed\n");   return NULL;  default:{   struct timeval tv = { 0, 100 * 1000 };   int status;   select(0, NULL, NULL, NULL, &tv);   switch(waitpid(ret, &status, WNOHANG)){   case 0:    printf("[fcg] spawned process %s: %d\n", path, ret);    break;   case -1:    fprintf(stderr, "[fcgi] waitpid failed\n");    return NULL;   default:    if (WIFEXITED(status)) {      fprintf(stderr, "[fcgi] child exited with: %d\n", WEXITSTATUS(status));    } else if (WIFSIGNALED(status)) {      fprintf(stderr, "[fcgi] child signaled: %d\n", WTERMSIG(status));    } else {      fprintf(stderr, "[fcgi] child died somehow: %d\n", status);    }    return NULL;   }   //wait for child process to exit   process_fp[idx] = ret;   waitpid(ret, &status, 0);   process_fp[idx] = 0;  }  }#endif }}static int start_processes(){ int i; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 64*1024); //64KB for(i=0; i<number; i++){  if( pthread_create( &threads, &attr, spawn_process, NULL ) == -1 ){   fprintf(stderr, "failed to create thread %d\n", i);  } }  for(i=0; i<number; i++){  pthread_join(threads, NULL); } return 0;}#ifdef __WIN32__void init_win32(){ /* init win32 socket */ static WSADATA wsa_data;  if(WSAStartup((WORD)(1<<8|1), &wsa_data) != 0)  exit(1); JOBOBJECT_EXTENDED_LIMIT_INFORMATION limit; FcpJobObject = (HANDLE)CreateJobObject(NULL, NULL); if(FcpJobObject == NULL)   exit(1);  /* let all processes assigned to this job object  * being killed when the job object closed */ if (!QueryInformationJobObject(FcpJobObject, JobObjectExtendedLimitInformation, &limit, sizeof(limit), NULL)) {  CloseHandle(FcpJobObject);  exit(1); } limit.BasicLimitInformation.LimitFlags |= 
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.