zoukankan      html  css  js  c++  java
  • Apache的几个问题

    关于Parent: child process exited with status 3221225477 -- Restarting.

    php5与apache2.x环境报错:

    [notice] Parent: child process exited with status 3221225477 — Restarting.

    解决办法:

    copied the following two files from my PHP directory to the Win32 directory and the errors stopped : php5apache.dll, libmysql.dll.

    中文解析:复制php5目录下的php5apache.dll和libmysql.dll两个dll文件到windows/system32目录下,然后重启server.

    注意,php5apache.dll只适用于apache 版本1的,
    PHP5压缩包里的php5apache2.dll只适用于apache2.0.*版本;
    如果是2.2.*以上版本,换成php5apache2_2.dll即可。

    请遇到问题的朋友注意一下php5apache.dll的版本,根据自己的Apache版本COPY对应的php5apache.dll文件。

    按照上面的操作之后,再次执行连接数据库的测试页面,OK,一切正常,Discuz!配置,一切OK。

    windows下的apache用的不是prefork的mpm,而是winnt,prefork的mpm在win下是无效的。修改httpd-mpm.conf下面的段
    <IfModule mpm_winnt_module>
        ThreadsPerChild      1500
        MaxRequestsPerChild    10000
    </IfModule>

  • 相关阅读:
    c/c++中两颗璀璨的明珠
    deepin软件中心打不开
    shell之rm -rf的别名设置
    历史命令脚本
    mysql之7xtrabackup
    python之3内置容器
    python之第一个例子hello world
    python之安装
    shell脚本练习(autocert)
    【转】nginx之逻辑运算
  • 原文地址:https://www.cnblogs.com/lgms2008/p/2054293.html
Copyright © 2011-2022 走看看