zoukankan      html  css  js  c++  java
  • ERROR: Unable to globalize '/usr/local/NONE/etc/php-fpm.d/*.conf' (ret = 2) from /usr/local/etc/php-fpm.conf at line WARNING: Nothing matches the include pattern '/usr/local/php7/etc/php-fpm.d/*.conf'

    Building from source is not easy if something is a bit different, and I had a hard time with some directory and configuration options. I was floundering around the web until I found this site that translated from Chinese. No one else had the solution.  I couldn't get php fpm to start until I changed the directory (Item 2.ERROR: Unable to globalize). I had other issues listed but I was able to solve them. Please don't delete this, it is very useful info.

    The original site  (it is in Chinese, not my site, but I want to give credit):

    (there is some more there, you can goto the site)

    blog.dream1987.top/?paged=2

    Installation problems:

    1. configure: error:. Xml2-config not found Please check your libxml2 installation.

    solution:

    apt-get install libxml2-dev



    2.Warning: Declaration of PEAR_Installer :: download () should be compatible with & PEAR_Downloader :: download ($ params) in phar: ///root/php-7.0.0alpha1/pear/install-pear-nozlib.phar/PEAR /Installer.php on line 43

    Warning: Declaration of PEAR_PackageFile_Parser_v2 :: parse () should be compatible with PEAR_XMLParser :: parse ($ data) in phar: ///root/php-7.0.0alpha1/pear/install-pear-nozlib.phar/PEAR/PackageFile/ Parser / v2.php on line 113 
    [PEAR] Archive_Tar - already installed: 1.3.13 
    [PEAR] Console_Getopt - already installed: 1.3.1 
    [PEAR] Structures_Graph- already installed: 1.0.4

    Warning: Declaration of PEAR_Task_Replace :: init () should be compatible with PEAR_Task_Common :: init ($ xml, $ fileAttributes, $ lastVersion) in phar: ///root/php-7.0.0alpha1/pear/install-pear-nozlib. phar / PEAR / Task / Replace.php on line 31 
    [PEAR] XML_Util - already installed: 1.2.3

    Warning: Declaration of PEAR_Task_Windowseol :: init () should be compatible with PEAR_Task_Common :: init ($ xml, $ fileAttributes, $ lastVersion) in phar: ///root/php-7.0.0alpha1/pear/install-pear-nozlib. phar / PEAR / Task / Windowseol.php on line 76

    Warning: Declaration of PEAR_Task_Unixeol :: init () should be compatible with PEAR_Task_Common :: init ($ xml, $ fileAttributes, $ lastVersion) in phar: ///root/php-7.0.0alpha1/pear/install-pear-nozlib. phar / PEAR / Task / Unixeol.php on line 76 
    [PEAR] PEAR - already installed: 1.9.5

    solution:

    Workaround not found (http://pear.php.net/bugs/bug.php?id=20554)

    3. Start php-fpm

    1.ERROR: failed to open configuration file '/usr/local/etc/php-fpm.conf': No such file or directory (2) 
    ERROR: failed to load configuration file '/usr/local/etc/php-fpm.conf' 
    ERROR: FPM initialization failed

    solution:

    Php-fpm.conf copy files from the source file to that location.

    cp /root/php-7.0.0alpha1/sapi/fpm/php-fpm.conf /usr/local/etc/php-fpm.conf

    2.ERROR: Unable to globalize '/usr/local/NONE/etc/php-fpm.d/*.conf' (ret = 2) from /usr/local/etc/php-fpm.conf at line 125. 
    ERROR: failed to load configuration file '/usr/local/etc/php-fpm.conf' 
    ERROR: FPM initialization failed

    solution:

    Edit /usr/local/etc/php-fpm.conf document introduced * .conf part, change to the correct path include = / usr / local / etc / php-fpm.d / *. Conf

    If there is no /usr/local/etc/php-fpm.d directory, create the directory.

    3.WARNING: Nothing matches the include pattern '/usr/local/etc/php-fpm.d/*.conf' from /usr/local/etc/php-fpm.conf at line 125. 
    ERROR:. No pool defined at least one pool section must be specified in config file 
    ERROR: failed to post process the configuration 
    ERROR: FPM initialization failed

    solution:
    这里进入以下目录:
    cd /usr/local/php/etc/php-fpm.d/
    cp www.conf.default www.conf
    cp www.conf.default www.conf

    4.ERROR: [pool www] can not get gid for group 'nobody' 
    ERROR: FPM initialization failed

    solution:

    Www.conf open files, user and group users into nginx default settings, usually the default is www-data.
    3
    Akash Kumar Sharma ¶
    2 years ago
    If you get "File not found" error then add "root ROOT_DIR_LOCATION" directive to PHP location block i.e. "location ~* .php$ { }" , where ROOT_DIR_LOCATION is root directory like "/usr/share/nginx/html" .
    0
    sp at rysmax dot com ¶
    8 months ago
    Translate errors:

    Теперь перейдите в http://localhsot
    Теперь перейдите в http://localhost

    В этом разделе описивыется 
    В этом разделе описывается 

    запрещаем Nginx от отправлять
    запрещаем Nginx отправлять
    0
    nguyentienlong88 at gmail dot com ¶
    2 years ago
    at step 3, after command "sudo make install"
    if there is problem with pear.php.net (https). Need to change this line (from https to http) in Makefile
    PEAR_INSTALLER_URL = http://pear.php.net/install-pear-nozlib.phar
    0
    nguyentienlong88 at gmail dot com ¶
    2 years ago
    at step 3, if there is no configure script yet, you need to rebuiding configure script using this command:
       
    ./buildconf --force
  • 相关阅读:
    windows下建立多重文件夹
    one-hot向量,softmax向量和反向传播
    牛客网高级项目实战课第一章
    Mysql索引的创建与删除
    Tomcat服务器
    JavaWeb基本概念
    Windows系统下Elasticsearch集群搭建
    数据结构之排序算法1
    如何求一个数的平方根
    数据结构之查找算法
  • 原文地址:https://www.cnblogs.com/my-blogs-for-everone/p/9983241.html
Copyright © 2011-2022 走看看