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
  • 相关阅读:
    Go Example--方法
    Go Example--结构体
    Flutter项目实操---我的界面搭建、开源中国API流程了解、HTTP请求封装、登录处理<二>
    Java精通并发-CAS底层实现与AtomicInteger源码剖析、关于CAS问题描述
    大数据JavaWeb之JDBC基础----快速入门、各个类详解(DriverManager、Connection、Statement)
    Flutter项目实操---开源中国之项目说明、基础框架搭建、基础BottomBar、侧滑菜单<一>
    Kotlin项目实战之手机影音---主界面tab切换、home界面适配、获得首页网络数据
    android高级UI之Canvas综合案例操练
    开启Fluter基础之旅<六>-------自定义View、牛逼动画效果
    Z-score
  • 原文地址:https://www.cnblogs.com/6tian/p/4277808.html
Copyright © 2011-2022 走看看