curl's manpage explicitly describes one difference between curl's --data
/--data-ascii
and --data-binary
options; namely, that when the @filename
syntax is used to make curl read data from a file, --data
will strip newlines from the file but --data-binary
will not.
--data-binary
can only be reasonably interpreted to mean that there are certain 'conversions' besides newline removal that --data
does on the data it is given
kibana 매니지먼트
kibana 접속 - Management - index Patterns - Create index pattern에서
인덱스 이름 입력,
잘못 지정해둔 Index pattern을 삭제하려는데 아래와 같은 오류가 뜬다.
blocked by: [FORBIDDEN/12/index read-only / allow delete (api)];: [cluster_block_exception] blocked by: [FORBIDDEN/12/index read-only / allow delete (api)];
해결방법 :
localhost:9200/_settings
에 아래의 내용으로 PUT한다
x{
"index": {
"blocks": {
"read_only_allow_delete": "false"
}
}
}
'Back-end' 카테고리의 다른 글
Github Oauth App의 Authorization 처리 (0) | 2019.10.31 |
---|---|
logstash - Windows환경에서 (0) | 2018.09.07 |
Elastic Search - Bucket Aggregation (0) | 2018.09.01 |
Elastic Search -Metric Aggregation (0) | 2018.08.31 |
ElasticSearch Search 데이터 조회하기 (0) | 2018.08.30 |
댓글