-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
5주차 - 실습환경 구축하기 #4
Comments
cluster.name: "docker-cluster"
network.host: 0.0.0.0
#----------------------- BEGIN SECURITY AUTO CONFIGURATION -----------------------
#
# The following settings, TLS certificates, and keys have been automatically
# generated to configure Elasticsearch security features on 17-10-2023 12:41:10
#
# --------------------------------------------------------------------------------
# Enable security features
xpack.security.enabled: false
xpack.security.enrollment.enabled: false
# Enable encryption for HTTP API client connections, such as Kibana, Logstash, and Agents
xpack.security.http.ssl:
enabled: false
keystore.path: certs/http.p12
# Enable encryption and mutual authentication between cluster nodes
xpack.security.transport.ssl:
enabled: false
verification_mode: certificate
keystore.path: certs/transport.p12
truststore.path: certs/transport.p12
# Create a new cluster with the current node only
# Additional nodes can still join the cluster later
cluster.initial_master_nodes: ["9d9ae4a8858c"]
#----------------------- END SECURITY AUTO CONFIGURATION -------------------------http.cors.enabled: true
http.cors.allow-origin: "*"
http.cors.allow-methods: OPTIONS, HEAD, GET, POST, PUT, DELETE
http.cors.allow-headers: "X-Requested-With,X-Auth-Token,Content-Type, Content-Length, Authorization"
|
vue 프로젝트 오류 수정/router/index.js
|
실습중 이슈 가이드 드립니다.
{
"settings": {
"index": {
"analysis": {
"nori_token_analyzer": {
"type": "custom",
"tokenizer": "nori_user_dict_tokenizer"
}
}
}
},
"mappings": {
"properties" : {
"movieCd" : {"type" : "integer"},
"movieNm" : {"type":"text"},
"movieNmEn": {"type":"text"},
"prdtYear" : {"type":"integer"},
"repNationNm" : {"type" : "keyword"},
"regGenreNm" : {"type" : "keyword"}
}
}
}
// as_is
index : {
_index : indexName,
_type : typeName
}
// to_be
index : {
_index : indexName
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
docker에 elasticsearch 설치
UI : https://github.com/javacafe-project/movie-finder
The text was updated successfully, but these errors were encountered: