Monthly Archives: 7월 2020
Linux free 명령어
Bootstrap 4.x 기초정리
Bootstrap 4.x 기초정리
템플릿
Bootstrap 은 jquery 가 있어야 작동합니다.
<!DOCTYPE html>
<html lang="en">
<head>
… 더보기 Cookie 생성 조회 삭제
Cookie 생성 조회 삭제
/*
setCookie("test", "test1234", 1*60*60);
alert(getCookie("test"));
deleteCookie("test");
alert(getCookie("test"));
*/
var setCookie =
… 더보기 Ubuntu add sudo user with no password
Elasticsearch rolling restart with Ansible
Install Ansible on Ubuntu 18.04
Elasticsearch 모니터링
Elasticsearch 모니터링
cerebro
docker run -p 9000:9000 lmenezes/cerebro:0.8.3
실행 후 http://<ES server ip>:9000
에 접속할 … 더보기
Elasticsearch 자주 쓰이는 명령어모음
Elasticsearch 자주 쓰이는 명령어모음
상태확인
실행상태 확인
curl -X GET 'localhost:9200'
curl -X GET 'localhost:9200/_cat/health'
… 더보기 Elasticsearch 자동완성(autocomplete) 구현하기
Elasticsearch 자동완성(autocomplete) 구현하기
자동완성을 구현하기 위한 몇몇 기능들을 구현해 봅니다.
데이타 준비하기
curl -XDELETE http://localhost:9200/auto_complete?pretty
… 더보기