zoukankan      html  css  js  c++  java
  • ambari安装过程中的问题汇总

    今天重新安装ambari过程中,遇到了几个问题,耗费了我很长时间,在此记录一下

    ambari重新安装可参考我之前的一篇随笔

    http://www.cnblogs.com/6tian/p/4097401.html

    遇到的问题一:

    此问题是在安装第二步,注册主机时遇到的
    ('ERROR 2015-02-06 20:09:43,441 NetUtil.py:56 - [Errno 1] _ssl.c:492: error:100AE081:elliptic curve routines:EC_GROUP_new_by_curve_name:unknown group ERROR 2015-02-06 20:09:43,442 NetUtil.py:58 - SSLError: Failed to connect. Please check openssl library versions. Refer to: https://bugzilla.redhat.com/show_bug.cgi?id=1022468 for more details. INFO 2015-02-06 20:09:43,442 NetUtil.py:81 - Server at https://Master.domain.dev:8440 is not reachable, sleeping for 10 seconds... INFO 2015-02-06 20:09:45,343 main.py:83 - loglevel=logging.INFO INFO 2015-02-06 20:09:45,343 main.py:55 - signal received, exiting. INFO 2015-02-06 20:09:45,343 ProcessHelper.py:39 - Removing pid file INFO 2015-02-06 20:09:45,344 ProcessHelper.py:46 - Removing temp files INFO 2015-02-06 20:10:19,815 main.py:83 - loglevel=logging.INFO INFO 2015-02-06 20:10:19,816 DataCleaner.py:36 - Data cleanup thread started INFO 2015-02-06 20:10:19,816 DataCleaner.py:71 - Data cleanup started INFO 2015-02-06 20:10:19,816 DataCleaner.py:73 - Data cleanup finished INFO 2015-02-06 20:10:19,973 PingPortListener.py:51 - Ping port listener started on port: 8670 INFO 2015-02-06 20:10:19,973 main.py:227 - Connecting to the server at: https://Master.domain.dev:8440 INFO 2015-02-06 20:10:19,974 NetUtil.py:72 - DEBUG: Trying to connect to the server at https://Master.domain.dev:8440 INFO 2015-02-06 20:10:19,974 NetUtil.py:42 - Connecting to the following url https://Master.domain.dev:8440/cert/ca ERROR 2015-02-06 20:10:20,023 NetUtil.py:56 - [Errno 1] _ssl.c:492: error:100AE081:elliptic curve routines:EC_GROUP_new_by_curve_name:unknown group ERROR 2015-02-06 20:10:20,023 NetUtil.py:58 - SSLError: Failed to connect. Please check openssl library versions. Refer to: https://bugzilla.redhat.com/show_bug.cgi?id=1022468 for more details. INFO 2015-02-06 20:10:20,023 NetUtil.py:81 - Server at https://Master.domain.dev:8440 is not reachable, sleeping for 10 seconds... ', None) Connection to Slave5.domain.dev closed. SSH command execution finished host=Slave5.domain.dev, exitcode=0 Command end time 2015-02-06 12:07:47 Registering with the server... Registration with the server failed.

    解决方法:

    一下是官方论坛中给出的方法,很好

    Platforms:

    • RHEL / CentOS 6.5
    • Ambari 1.4 or later

    Root Cause: The OpenSSL library available and installed by default on RHEL/CentOS 6.5 has a bug. Refer to https://bugzilla.redhat.com/show_bug.cgi?id=1025598 for detailed information on the bug.

    Remedy:

    1. Check the OpenSSL library version installed on your host(s):
      rpm -qa | grep openssl
      
      openssl-1.0.1e-15.el6.x86_64
      
      
    2. If the output says openssl-1.0.1e-15.x86_64 (1.0.1 build 15) you will need to upgrade the OpenSSL library by running the following command:

      yum upgrade openssl

    3. Verify you have the newer version of OpenSSL (1.0.1 build 16):

      rpm -qa | grep openssl

      openssl-1.0.1e-16.el6.x86_64

    4. Restart Ambari Agent(s) and Click Retry Failed on the Wizard

    问题二:

    在安装到倒数第二步“Install, Start and Test”时,一直安装不成功,提示

    [Errno 256] No more mirrors to try

    解决方法:

    输入下面的命令即可解决问题:

    1. yum clean all
    2. yum makecache
  • 相关阅读:
    HTTP method GET is not supported by this URL
    idea 报错javax/xml/bind/DatatypeConverter
    PartyBid 学习笔记 之 第二张卡片总结
    PartyBid 学习笔记 之 第一张卡片总结
    Yeoman 之 Jade自动化生成的Grunt实现
    Jade —— 简洁的HTML模版引擎
    Underscore.JS 之 消灭for循环
    SqlServer 根据时间统计数据展示图表
    C# 中使用 JavaScriptSerializer 序列化时的时间类型处理
    jQuery 插件 autocomplete 的使用
  • 原文地址:https://www.cnblogs.com/6tian/p/4277808.html
Copyright © 2011-2022 走看看