본문 바로가기

ALL159

SSLError: Failed to connect. Please check openssl library versions. 🚫 ERROR INFO 2020-02-14 17:13:35,457 NetUtil.py:70 - Connecting to https://hdp.hadoop.com:8440/ca ERROR 2020-02-14 17:13:35,460 NetUtil.py:96 - EOF occurred in violation of protocol (_ssl.c:618) ERROR 2020-02-14 17:13:35,461 NetUtil.py:97 - SSLError: Failed to connect. Please check openssl library versions. Refer to: https://bugzilla.redhat.com/show_bug.cgi?id=1022468 for more details. WARNING 2.. 2020. 2. 14.
Ambari table 생성 Ambari 설치 후 실행하기 전 관련 테이블을 생성해야 합니다. 생성하지 않고 ambari-server start 실행을 하면 에러가 발생합니다. ambari 설치가 완료 되었으면 아래 명령어 실행해서 관련 테이블을 모두 생성해 줍니다. mysql -u ambari -p ambari < /var/lib/ambari-server/resources/Ambari-DDL-MySQL-CREATE.sql 2020. 2. 14.
[Atlas] Authentication failed. Cloudera Manager에서 Atlas 설치 후 인증 문제가 발생하는데 Congifuration에서 아래 옵션을 체크해주면 정상 로그인됩니다. 2020. 2. 4.
[MariaDB] Specified key was too long; max key length is 767 bytes MariaDB에서 ranger db 생성할 때마다 발생하는 에러입니다... 까먹지 않게 적어둠.. 초기에 세팅해두면 좋습니다. 💡 해결 방법 my.cnf에 아래 옵션 추가 후 mariaDB 재기동 $ vi /etc/my.cnf [mysqld] ... innodb_file_format = barracuda innodb_large_prefix = on ✅ 재기동 후 확인 명령어 MariaDB [(none)]> SHOW VARIABLES LIKE 'innodb_lar%'; +---------------------+-------+ | Variable_name | Value | +---------------------+-------+ | innodb_large_prefix | ON | +--------------.. 2020. 2. 3.
[SOLVED] two-way ssl authentication failed 🚫 ERROR (Ambari) two-way ssl authentication failed. ssl CERTIFICATE_VERIFY_FAILED certificate verify failed and ambari agent heartbeat is not sending heartbeats 💡 SOLVED: 1. open /etc/ambari-server/conf/ambari.properties 2. remove the property security.server.two_way_ssl = true 2020. 1. 21.
[SOLVED] CDSW docker daemons fail to start CDSW docker daemons fail to start with the following error: Error starting daemon: error initializing graphdriver: devmapper: Unable to take ownership of thin-pool (docker-thinpool) that already has used data blocks. or Non existing device docker-thinpool This issue occurs when the block devices you specified for the Docker Block Device field already have data on them. This is a safeguard to pre.. 2020. 1. 17.
Hue hbase Api Error: TSocket read 0 bytes 💡 SLOVED hbase.regionserver.thrift.http - enable 2020. 1. 15.
[SOLVED] This account is currently not available root 계정에서 타 계정으로 전환 안되는 문제 해결 방법입니다. 🚫 ERROR /etc/passwd에서 해당 계정이 nologin으로 설정되어 있어서 계정 전환이 되지 않음 $ su - hdfs This account is currently not available $ cat /etc/passwd | grep hdfs hdfs:x:986:979:Hadoop HDFS:/var/lib/hadoop-hdfs:/sbin/nologin 💡 SOLVED chsh로 계정 shell을 변경 후 su - hdfs 명령이 정상 작동 ## 일시적으로 변경하여 hdfs로 계정 접속 방법 $ su - hdfs -s /bin/bash ## 영구적으로 변경하는 방법 $ chsh -s /bin/bash hdfs $ cat /etc.. 2020. 1. 14.