ubuntu安装php常见错误集锦

时间:2023-01-14 20:17:03

一、configure 报错

1、错误类型:

Configure: error: Please reinstall the libcurl distribution-easy.h should be in <curl-dir>/include/curl/

解决方法:

sudo apt-get install libcurl4-gnutls-dev libcurl4-openssl-dev

2、错误类型:

configure: error: sasl.h not found!

解决方法:

sudo apt-get install libsasl2-dev

3、错误类型:

Configure: error: Please reinstall the ncurses distribution

解决方法:

sudo apt-get install libncurses5-dev

4、错误类型:

Configure: error: xml2-config not found. Please check your libxml2 installation.

解决方法:

sudo apt-get install libxml2-dev

5、错误类型:

configure: error: Cannot find OpenSSL’s <evp.h>

解决方法:

sudo apt-get install openssl

6、错误类型:

Configure: error: Please reinstall the BZip2 distribution

解决方法:

sudo apt-get install bzip2

7、错误类型:编译时缺少库

configure:error:libXpm.(a|so)not found

解决方法:

sudo apt-get install libXpm-dev

8、错误类型:

Configure: error: libjpeg.(also) not found.

Configure: error: libpng.(also) not found.

(这2个报错在5.3之后的版本中应该不会有了,取消掉了这个东西)

解决方法:

sudo apt-get install libjpeg-dev libpng12-dev

9、错误类型:

Configure: error: Cannot find MySQL header files under /usr.Note that the MySQL client library is not bundled anymore!

解决方法(如果是按我的LNMP的顺序这个错也是不会发生的,因为此时数据库已经装好了):

sudo apt-get install libmysql++-dev

10、错误类型:编译时缺少gmp.h文件

configure: error: Unable to locate gmp.h

解决方法:

sudo apt-get install libgmp-dev libgmp3-dev

11、错误类型:

Configure: error: Cannot find pspell

解决方法:sudo apt-get install libpspell-dev

12、错误类型:

configure: error: mcrypt.h not found. Please reinstall libmcrypt.

解决方法:

sudo apt-get install libmcrypt-dev mcrypt

13、错误类型:

Configure: error: snmp.h not found. Check your SNMP installation.

解决方法:

sudo apt-get install libsnmp-dev

14、configure:error:Cannot find ldap.h

网上普遍的方法是安装openldap。

解决方法:

ubuntu下ldap的包名是libldap-2.4-2、ldap-utils、libldap2-dev,安装即可

15、错误类型:

configure:error:xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution

解决方法:

sudo apt-get install libxslt1-dev

16、错误类型:

configure: error: Could not find libevent >=1.4.11 in /usr/local/php

解决方法:

安装libevent-1.4.11以上版本至/usr/local
tar xzvf libevent-1.4.14-stable.tar.gz
cd libevent-1.4.14-stable
./configure --prefix=/usr/local
make&&make install
在编译./configure时添加--with-libevent-dir=/usr/local即可

17、错误类型:

configure: error: Could not find pcre.h in /usr

解决方法:

sudo apt-get install libpcre3-dev

18、错误类型:

configure: error: DBA: Could not find necessary header file(s).checking for db4 major version... configure: error: Header contains different version

解决方法:

sudo apt-get install libdb4.8-dev

19、错误类型:

configure: error: freetype.h not found.

解决方法:

sudo apt-get install libfreetype6-dev

20、错误类型:

configure: error: Cannot find libpq-fe.h. Please specify correct PostgreSQL installation path

解决方法:

sudo apt-get install postgresql-server-dev-9.1

21、错误类型:

configure: error: Your t1lib distribution is not installed correctly. Please reinstall it.

解决方法:sudo apt-get install libt1-dev

22、错误类型:

configure: error: Unable to find gd.h anywhere under /usr

解决方法:

sudo apt-get install libgd2-xpm-dev

23、错误类型:

configure: error: ODBC header file '/usr/include/sqlext.h' not found!

解决方法:

sudo apt-get install unixodbc-dev

24、错误类型:

configure: error: Directory /usr is not a FreeTDS installation directory

解决方法:

sudo apt-get install freetds-dev

25、错误类型:

configure: error: Cannot find libtidy

解决方法:

sudo apt-get install libtidy-dev

26、错误类型:

configure: error: You've configured extension pdo_sqlite to build statically, but it depends on extension pdo, which you've configured to build shared. You either need to build pdo_sqlite shared or build pdo statically for the build to be successful.

解决方法:

Add following switches to your ./configure options:
--with-pdo-sqlite=shared
--with-sqlite=shared

27、报错类型:

configure: error: Cannot find OpenSSL's libraries

解决方法:

Add following switch to your ./configure options (optionally updating the path to reflect your system):
--with-libdir=/lib/x86_64-linux-gnu

从上面这么多错误可以看出大多数是由于库的安装不完整导致的,并且根据提示就能知道安装哪些包。

二、make 报错

1、报错类型:

error while loading shared libraies: libmysqlclient.so.20: cannot open shared object file: No such file or directory

解决方法:

shell> find / -name "libmysqlclient.so.20"
/usr/local/mysql/lib/libmysqlclient.so.20
/usr/local/src/mysql-5.7.9/libmysql/CMakeFiles/CMakeRelink.dir/libmysqlclient.so.20
/usr/local/src/mysql-5.7.9/libmysql/libmysqlclient.so.20
shell> echo "/usr/local/lib" >>/etc/ld.so.conf
shell> echo "/usr/local/mysql/lib" >>/etc/ld.so.conf
shell> sudo ldconfig

或者:

ln -s /usr/local/mysql/lib/libmysqlclient.so.20 /usr/lib64

2、报错类型:

chmod: 无法访问"ext/phar/phar.phar": 没有那个文件或目录

解决方法:

mkdir -p ext/phar/phar.phar

3、报错类型:

usr/bin/ld: ext/ldap/.libs/ldap.o: undefined reference to symbol 'ber_strdup@@OPENLDAP_2.4_2'//usr/lib/x86_64-linux-gnu/liblber-2.4.so.2: error adding symbols: DSO missing from command line

解决方法:

遇到这种类似的情况,说明「./configure 」沒抓好一些环境变数值。 在PHP源码目录下 vi Makefile 找到 EXTRA_LIBS 行,在行末添加 ‘ -llber ‘ 保存退出再次make即可。

cd /usr/local/src/php/php-5.6.15
vim Makefile
找EXTRA_LIBS行,在末尾添加--llber

4、报错类型:

cc1: out of memory allocating 2036 bytes after a total of 81846272 bytes

/usr/bin/ld: cannot find -lltdl

collect2: ld returned 1 exit status

解决方法:

sudo apt-get install libltdl-dev

三、启动服务器 报错

1、报错类型:

ERROR: [pool www] cannot get gid for group 'nobody'

解决方法:

groupadd nobody

2、报错类型:

connect() to unix:/var/run/php-fpm/php-fpm.sock failed (13: Permission denied) while connecting to upstream

解决方法(owner和group根据运行者来写):

sudo vim /usr/local/php/etc/php-fpm.conf
listen.owner = www
listen.group = www
listen.mode = 0660

ubuntu安装php常见错误集锦的更多相关文章

  1. &lpar;转&rpar;Hadoop之常见错误集锦

     Hadoop之常见错误集锦            下文中没有特殊说明,环境都是CentOS下Hadoop 2.2.0.1.伪分布模式下执行start-dfs.sh脚本启动HDFS时出现如下错误:   ...

  2. PHP编译安装时常见错误解决办法,php编译常见错误

    PHP编译安装时常见错误解决办法,php编译常见错误 1.configure: error: xslt-config not found. Please reinstall the libxslt & ...

  3. Elasticsearch学习之ElasticSearch 5&period;0&period;0 安装部署常见错误或问题

    ElasticSearch 5.0.0 安装部署常见错误或问题 问题一: [--06T16::,][WARN ][o.e.b.JNANatives ] unable to install syscal ...

  4. ubuntu 16&period;04常见错误--Could not get lock &sol;var&sol;lib&sol;dpkg&sol;lock解决

    我的博客 ubuntu常见错误--Could not get lock /var/lib/dpkg/lock解决 通过终端安装程序sudo apt-get install xxx时出错: E: Cou ...

  5. Python:常见错误集锦(持续更新ing)

    初学Python,很容易与各种错误不断的遭遇.通过集锦,可以快速的找到错误的原因和解决方法. 1.IndentationError:expected an indented block 说明此处需要缩 ...

  6. python的多版本安装以及常见错误(长期更新)

    (此文长期更新)Python安装常见错误汇总 注:本教程以python3.6为基准 既然是总结安装过程中遇到的错误,就顺便记录一下我的安装过程好了. 先来列举一下安装python3.6过程中可能需要的 ...

  7. 【转】ubuntu源码编译安装php常见错误解决办法

    ./configure -prefix=/usr/local/php -with-config-file-path=/etc -with-mysql=mysqlnd -with-mysqli=mysq ...

  8. Ubuntu下postgresql安装及常见错误处理

    依赖工具库 注意: 默认用户名是postgres 以下命令是Ubuntu操作系统中的命令 make GCC Zlib 安装命令:sudo apt-get install zlib1g-dev 注意有些 ...

  9. mysql编译安装后各种常见错误集锦

    1.ERROR 2013 (HY000): Lost connection to MySQL server at 'reading initial communication packet', sys ...

随机推荐

  1. Mac上部署JDK&sol;Ant&sol;Jmeter&sol;Jenkins

    一.安装JDK 1. 下载JDK 2. 下完后直接双击安装,默认安装到/Library/Java/JavaVirtualMachine下 3. 验证是否安装成功 java -version 二.安装J ...

  2. c&num;后台进行窗体切换的方法

    Response.Redirect("http://localhost:60896/WebForm2.aspx");

  3. Linux和Windows下ping命令详解(转:http&colon;&sol;&sol;linux&period;chinaitlab&period;com&sol;command&sol;829332&period;html)

    一.Linux下的ping参数 用途 发送一个回送信号请求给网络主机. 语法 ping [ -d] [ -D ] [ -n ] [ -q ] [ -r] [ -v] [ \ -R ] [ -a add ...

  4. linux学习笔记2-命令总结1

    计划一个长期过程系统学习linux,这是本周学习总结,如果错误望指出纠正. 文件处理命令 命令格式与目录处理命令  ls 目录处理命令  cd  cp  mkdir  mv  pwd  rm  rmd ...

  5. 基于野火M3开发板(STM32F103VET6)的迷宫小球(重力感应控制)游戏开发

    2013-03-03 这是研一上学期<实时嵌入式系统实验>课程的大作业,是利用野火板的资源,加上一个AHRS(Attitude and Heading Reference System,姿 ...

  6. poj 3250 Bad Hair Day 单调栈入门

    Bad Hair Day 题意:给n(n <= 800,000)头牛,每头牛都有一个高度h,每头牛都只能看到右边比它矮的牛的头发,将每头牛看到的牛的头发加起来为多少? 思路:每头要进栈的牛,将栈 ...

  7. 在本地Apache服务器配置虚拟主机站点

    Apache 配置localhost虚拟主机步骤1,打开apache目录下httpd.conf文件,找到如下模块        # Virtual hosts        #Include conf ...

  8. 推荐一款JSON字符串查看器

    JSON Viewer是一款方便易用的Json格式查看器.Json格式的数据阅读性很差,如果数据量大的话再阅读方面会十分困难,有了这软件,问题就解决了,能够快速把Json字符串排列规则的树结构,支持对 ...

  9. C&num;里调用 MysqlDB

    最近在做项目,发现在使用Mysql提供给C#操作的类不是和好用,就想办法写了一个操作方便的Mysql数据层类. 比如以前在执 行一个查询 代码                              ...

  10. &lbrack;BZOJ&rsqb;1085 骑士精神&lpar;SCOI2005&rpar;

    这种鲜明的玄学风格很明显就是十几年前的题目. Description 在一个5×5的棋盘上有12个白色的骑士和12个黑色的骑士, 且有一个空位.在任何时候一个骑士都能按照骑士的走法(它可以走到和它横坐 ...