zoukankan      html  css  js  c++  java
  • ubuntu 16 64位编译安装php

    ./configure 
    --prefix=/usr/local/php7 
    --exec-prefix=/usr/local/php7 
    --with-config-file-path=/usr/local/php7/etc 
     --with-curl 
     --with-freetype-dir 
     --with-gd 
     --with-gettext 
     --with-iconv-dir 
     --with-kerberos 
     --with-libdir=lib64 
     --with-libxml-dir 
     --with-mysqli 
     --with-openssl 
     --with-pcre-regex 
     --with-pdo-mysql 
     --with-pdo-sqlite 
     --with-pear 
     --with-png-dir 
     --with-xmlrpc 
     --with-xsl 
     --with-zlib 
    --with-zlib-dir 
    --with-mhash 
    --with-mcrypt 
    --with-openssl-dir 
    --with-jpeg-dir 
    --enable-gd-jis-conv 
     --enable-fpm 
     --enable-bcmath 
     --enable-libxml 
     --enable-inline-optimization 
     --enable-gd-native-ttf 
     --enable-mbregex 
     --enable-mbstring 
     --enable-opcache 
     --enable-pcntl 
     --enable-shmop 
     --enable-soap 
     --enable-sockets 
     --enable-sysvsem 
     --enable-xml 
     --enable-zip
    首先 configure 确定编译环境

    如出现一下错误::::::

    错误1:

    编译安装php7 报错 configure: error: Cannot find OpenSSL's libraries

    1)解决步骤:

    参考:http://linuxzj.blog.51cto.com/6160158/1632132  

            root@test2:~/PHP-5.3.27# find / -name libssl.so

          输出结果为: /usr/lib/x86_64-Linux-gnu/libssl.so

       初步判断它可能只会在 /usr/lib/ 下寻找 libssl.so 文件,于是:

        ln -s /usr/lib/x86_64-linux-gnu/libssl.so  /usr/lib

           重新编译安装即通过。

    还是报同样的错误。

    2)解决步骤2

    参考:https://stackoverflow.com/questions/40359817/litespeed-web-server-and-error-cannot-find-openssls-libraries

    apt-get install build-essential libexpat1-dev libgeoip-dev libpng-dev libpcre3-dev libssl-dev libxml2-dev rcs zlib1g-dev libmcrypt-dev libcurl4-openssl-dev libjpeg-dev libpng-dev libwebp-dev pkg-config

    错误2:

    ./configure的时候出现如下错误:

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

    解决方法:

    apt install libxslt-devel* -y

    与nginx 配置 :http://blog.csdn.net/whatday/article/details/50645117

  • 相关阅读:
    捕获异常的两种方式Exception
    线程的随机性
    单例模式简单解析--Singleton 单例模式(懒汉方式和饿汉方式)
    LeetCode 116. 填充每个节点的下一个右侧节点指针
    LeetCode 129. 求根到叶子节点数字之和
    LeetCode 124. 二叉树中的最大路径和
    LeetCode 119. 杨辉三角 II
    LeetCode 118. 杨辉三角
    LeetCode 113. 路径总和 II
    LeetCode 114. 二叉树展开为链表
  • 原文地址:https://www.cnblogs.com/whm-blog/p/7107975.html
Copyright © 2011-2022 走看看