错误一: ERROR: could not load the script in /usr/local//lib64/opensips/opensipsctl/opensipsdbctl.pgsql for database engine PGSQLERROR: database engine not loaded - tried 'PGSQL' 问题原因: 缺少pgsql的库. 解决办法: make menuconfig -> Configue Compile Options -> db_p…
PHP编译安装时常见错误解决办法,php编译常见错误 1.configure: error: xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution 解决方法: yum -y install libxslt-devel 2.configure: error: Could not find net-snmp-config binary. Please check your net-snmp installa…
踩坑 最近通过pecl安装mongodb扩展时,提示以下错误 ...... configure: error: Cannot find OpenSSL's <evp.h> ...... 根据提示,通过以下方式安装openssl后,再次使用pecl安装mongodb,仍然是提示同样的错误 brew install openssl 问题解决 通过pecl安装的路走不通,还是得通过简单暴力方式解决,使用源码包通过编译方式进行安装 1.编译安装前先安装autoconf brew install aut…
很多时候编译安装的时候把zabbix的php包拷贝到web所在目录之后(本文为nginx所在html目录),网页打开http:/localhost/zabbix却进不去下图: 或者是点了下一步没反应,或者到了安装第三步之后下一步又跳回第一步,搞了那么久发现原因如下: php执行用户应该为nginx,不是apache,这点修改php-fpm的时候就已经修改过了,但是有个文件没有修改,它就是session! find 找到那个文件,chown -R nginx:nginx ***(这里为刚才找到的s…
nginx编译时pcre会提示找不到libpcre.so.1 ./configure --hlep --without-pcre disable PCRE library usage   不使用pcre --with-pcre force PCRE library usage          使用默认的pcre库,默认使用系统自带的pcre-7.8,可以rpm -ql pcre查看一下 --with-pcre=DIR set path to PCRE library sources   使用自…
1.不要静态指定with-mysql 以扩展的mysql.so的形式安装 2.找不到header file之类的 要yum install mysql-devel find / -name mysql.h/usr/include/mysql/mysql.h 查找到mysql.h文件,我们更改参数为--with-mysql=/usr, 如果没有的话,请安装mysql-devel包, yum install mysql-devel 重新运行编译命令 3.要做软链接把mariadb的lib里的18(我…
https://www.cnblogs.com/wazy/p/8108824.html ./configure --user=www \ #worker进程运行用户 --group=www \ #worker进程运行的组 --prefix=/usr/ \ #Nginx安装的根路径,所有其他的路径都要依赖于改选项 --conf-path=/etc/nginx/nginx.conf \ #如果在命令行没有指定配置文件,那么将会通过这里指定的路径,Nginx将会去那里查找它的配置文件 --sbin-p…
configure: error: Cannot find ldap.h   检查下面是不是已经安装,如果没有安装之:检查:yum list openldapyum list openldap-devel安装 :yum install openldap yum install openldap-devel configure: error: Cannot find ldap libraries in /usr/lib 解决办法   今天在centos 6.2 64位版本上安装LNMP,confi…
This article is post on https://coderwall.com/p/ggmpfa 原文链接:http://www.bkjia.com/PHPjc/1008013.html configure: error: xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution复制代码 代码如下:yum -y install libxslt-devel configure: error: Co…
转载自:http://www.bkjia.com/PHPjc/1008013.html This article is post on https://coderwall.com/p/ggmpfa configure: error: xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution复制代码 代码如下:yum -y install libxslt-devel configure: error: Cou…