프로그래밍
-
elasticsearch 색인 오류 : type":"illegal_argument_exception","reason":"unknown setting [index.mapping._doc.properties.building_type.type]프로그래밍/검색 2018. 12. 18. 21:58
elasticsearch 색인 오류 색인할 때 다음과 같은 에러가 발생해서 한참 삽질 했는데 mapping 파일에서 mappings 가 아니라 mapping이라 써서 그런 거였다 ㅠㅠ "error":{"root_cause":[{"type":"illegal_argument_exception","reason":"unknown setting [index.mapping._doc.properties.building_type.type] please check that any required plugins are installed, or check the breaking changes documentation for removed settings"}], .... 직접 매핑 파일을 작성 안하고 키바나에서 매핑을 복사해..
-
리눅스 포트 사용중인 프로세스 확인 방법프로그래밍/Linux 2018. 12. 16. 23:19
리눅스(Ubuntu)에서 포트 사용중인 프로세스 확인 방법 netstat 을 사용하여 열려있는 포트와 연동된 PID, 프로그램 이름을 확인 할 수 있다. 특정 port 만 확인하고 싶을 경우 netstat -tulpn | grep 포트번호를 사용하면 된다. # netstat -tulpnActive Internet connections (only servers)Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program nametcp 0 0 127.0.0.1:45650 0.0.0.0:* LISTEN 24336/python3tcp 0 0 127.0.0.1:45490 0.0.0.0:* LISTEN 8301/python3tcp 0 0 127.0.0.1..
-
리눅스에 도쿠 위키 설치하기프로그래밍/Etc 2018. 12. 13. 08:43
일단 다운로드 부터 : https://download.dokuwiki.org 보안 주의 사항 : https://www.dokuwiki.org/ko:security 아래는 도쿠 위키에서 제공하는 설치 과정이다. Step 0: 설치할 서버가 시스템 요구사항을 충족하는지 확인하세요.Step 1: 최신 버전을 다운로드 페이지에서 다운로드하세요.Step 2: 설치 전 보안 페이지 읽기. 이것은 매우 중요합니다. 의문이 있다면 메일링 리스트에 질문하여 주세요.Step 3: 다운로드한 패키지를 압축 해제 후 생성 된 파일들을 설치를 원하는 웹 공간에 복사합니다.Step 4: 웹 브라우저로 install.php 파일을 열고 나서 나오는 설치 과정을 실행합니다. (추가정보는 installer 페이지를 참고하세요.)Ste..