Apache Solr Collection 생성
Search Engine2018. 8. 10. 10:31Apache Solr Collection 생성

solr create -c $collection_name -d $conf_dir $conf_dir: conf 경로에 미리 data-import.xml, solrconfig.xml manage-shem.xml 등의 파일이 설정되어 위치해야 한다. $collection_name: 사용할 collection 이름

카테고리 없음2018. 8. 7. 10:59solr 7.4.0 MySQL 데이터를 HDFS 색인하기

1). solr 웹 루트 경로의 라이브러리 폴더에 다음 jar 파일을 복사하여 넣는다. solr 웹 루트 라이브러리 경로: /BiO/program/solr/current/server/solr-webapp/webapp/WEB-INF/lib 복사 jar 파일solr-dataimporthandler-7.4.0.jarsolr-dataimporthandler-extras-7.4.0.jarmysql-connector-java-5.1.38-bin.jar 2). data-config.xml 작성 [MySQL 데이터 연결] [파일 데이터 연결] 3). solrconfig.xml 설정 [라이브러리 추가] [HDFS 연결 설정] hdfs://localhost:9000/solr true 1 true 16384 true tru..

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

image