zoukankan      html  css  js  c++  java
  • PHP composer-setup安装遇到的openssl extension is missing

     问题描述:

         安装完成php-7.1.17后,安装composer出现以下错误

    [root@localhost src]# curl -sS https://getcomposer.org/installer | php
    Some settings on your machine make Composer unable to work properly.
    Make sure that you fix the issues listed below and run this script again:
    
    The openssl extension is missing, which means that secure HTTPS transfers are impossible.
    If possible you should enable it or recompile php with --with-openssl

    排查过程中发现php 配置文件的问题,没有加载到php.ini文件

    [root@localhost php]# php --ini
    Configuration File (php.ini) Path: /usr/local/php-7.1.17/lib
    Loaded Configuration File:         (none)
    Scan for additional .ini files in: (none)
    Additional .ini files parsed:      (none)

     创建软链

    [root@localhost php]# ln -s /home/sc/php/php7-9026.ini /usr/local/php/lib/php.ini
    

     找到php.ini文件

    [root@localhost lib]# php --ini
    Configuration File (php.ini) Path: /usr/local/php-7.1.17/lib
    Loaded Configuration File:         /usr/local/php-7.1.17/lib/php.ini
    Scan for additional .ini files in: (none)
    Additional .ini files parsed:      (none)

    再次安装composer 正常。

    curl -sS https://getcomposer.org/installer | php
    mv composer.phar /usr/local/bin/composer

     通过phpinfo 查看是已经加载到了openssl,但是没有找到php.ini 导致通过绝对路径时没有加载到模块。

  • 相关阅读:
    react-flux的使用(2018/12/16)
    react-redux 的使用*(2018/12/17)
    小程序推送消息(Template)
    小程序富文本照片左右滚动
    前端自动化工具
    拾色器前端工具
    微信小程序 摇一摇
    小程序在线阅读文档
    配置JDK环境变量
    小程序 获取前几名加样式
  • 原文地址:https://www.cnblogs.com/xzlive/p/9310527.html
Copyright © 2011-2022 走看看