Hadoop과 InfluxDB 설치 시 포트 충돌 해결
Big Data2018. 8. 1. 09:30Hadoop과 InfluxDB 설치 시 포트 충돌 해결

Hadoop 과 시계열 데이터베이스 InfluxDB를 마스터 노드에 함께 설치 시 포트 충돌이 발생하여 InfluxDB 포트를 수정 한다. sudo vi /etc/influxdb/influxdb.conf ### Welcome to the InfluxDB configuration file. # The values in this file override the default values used by the system if # a config option is not specified. The commented out lines are the configuration # field and the default value used. Uncommenting a line and changing the value..

MariaDB 사용자 접근 권한 설정
Database2018. 7. 31. 16:50MariaDB 사용자 접근 권한 설정

1. 사용자 계정 생성 1.1 내부 접속용 create user 'RemoteUser'@'localhost' identified by 'localPassword'; 1.2 모든IP 외부접속용 create user 'RemoteUser'@'%' identified by 'remotePassword'; 1.3 특정IP 외부접속용 create user 'RemoteUser'@'192.168.150.%' identified by 'remotePassword'; 2. 계정 생성 및 권한설정 2.1 내부 접속용 grant all privileges on DB_NAME.* to RemoteUser@'localhost'; 2.2 모든IP 외부접속용 grant all privileges on DB_NAME.* to Re..

MariaDB 비밀번호 변경하기
Database2018. 7. 31. 16:48MariaDB 비밀번호 변경하기

1). mysqladmin 실행 파일 사용 $mysqladmin -u hive -p password '비밀번호' 2). UPDATE 쿼리를 사용 $mysql -u root -p use mysql; update user set password=password('비밀번호') where user=’hive'; flush privileges; 3). MySQL의 set password 명령어 사용 $mysql -u hive -p set password for hive=password('비밀번호'); flush privileges;

Zeppelin-0.9.1 + Spark-2.2.0 연동 과정에서 connection refused 장애 해결 방법
Big Data2018. 7. 31. 15:18Zeppelin-0.9.1 + Spark-2.2.0 연동 과정에서 connection refused 장애 해결 방법

- 스파크 jars 폴더 하위의 jar 파일들을 zeppelin의 interpreter 폴더 하위로 복사한다. cp -r /BiO/program/spark/current/jars/* /BiO/program/zeppelin/current/interpreter/spark/

CentOS에서 alternatives 이용한 java version 관리
System Management2018. 7. 31. 13:38CentOS에서 alternatives 이용한 java version 관리

alternatives --install /usr/bin/java java /opt/jdk/1.8.0_131/bin/java 2 alternatives --config java #There is 1 program that provides 'java'. # Selection Command #----------------------------------------------- #*+ 1 /opt/jdk1.8.0_131/bin/java #Enter to keep the current selection[+], or type selection number: #javac와 jar 명령어 경로도 alternatives 적용 권장 #At this point JAVA 8 has been successfully insta..

리눅스 계정 keygen 생성 및 복사 명령어
System Management2018. 7. 31. 10:58리눅스 계정 keygen 생성 및 복사 명령어

ssh-keygen -t dsa -P '' -f ~/.ssh/id_dsa ssh-copy-id localhost

Apache Phoenix 쿼리 결과를 파일 저장 명령어
Database2018. 7. 1. 22:15Apache Phoenix 쿼리 결과를 파일 저장 명령어

!outputformat csv !record data.csv (파일명을 포함한 절대 경로 지정) select * from system.catalog limit 10; !record !quit

kafka 리눅스 환경에서 IPv4로 실행
Big Data2018. 6. 11. 15:03kafka 리눅스 환경에서 IPv4로 실행

KAFKA 서버 실행 시 TCP6 로 실행되는 경우 아래의 옵션을 설정하여 TCP4 로 서버 구동을 실행 할 수 있다. export KAFKA_OPTS="-Djava.net.preferIPv4Stack=True"

image