2024-04-29 16:55:53 +02:00
|
|
|
#!/bin/bash
|
|
|
|
echo "Elasticsearch is now available. Proceeding with initialization..."
|
|
|
|
|
|
|
|
echo "Creating Elasticsearch indexes, roles, and users..."
|
|
|
|
|
|
|
|
# Command to create the "plans" index
|
2024-05-13 15:30:25 +02:00
|
|
|
curl -XPUT "http://localhost:9200/opencdmp-plans-test" -u elastic:elastic -H 'Content-Type: application/json' -d '{
|
2024-04-29 16:55:53 +02:00
|
|
|
"settings": {
|
|
|
|
"number_of_shards": 1,
|
|
|
|
"number_of_replicas": 1
|
|
|
|
},
|
|
|
|
"mappings": {
|
|
|
|
"properties": {
|
|
|
|
"title": { "type": "text" },
|
|
|
|
"description": { "type": "text" },
|
|
|
|
"price": { "type": "float" },
|
|
|
|
"date_added": { "type": "date" }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}'
|
|
|
|
|
|
|
|
# Command to create the "descriptions" index
|
2024-05-13 15:30:25 +02:00
|
|
|
curl -XPUT "http://localhost:9200/opencdmp-descriptions-test" -u elastic:elastic -H 'Content-Type: application/json' -d '{
|
2024-04-29 16:55:53 +02:00
|
|
|
"settings": {
|
|
|
|
"number_of_shards": 1,
|
|
|
|
"number_of_replicas": 1
|
|
|
|
},
|
|
|
|
"mappings": {
|
|
|
|
"properties": {
|
|
|
|
"product_id": { "type": "keyword" },
|
|
|
|
"description_text": { "type": "text" },
|
|
|
|
"language": { "type": "keyword" }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}'
|
|
|
|
|
2024-05-09 16:55:24 +02:00
|
|
|
curl -XPOST "localhost:9200/_security/role/opencdmp-api-test" -u elastic:elastic -H 'Content-Type: application/json' -d '{
|
2024-04-29 16:55:53 +02:00
|
|
|
"indices": [
|
|
|
|
{
|
2024-05-13 15:30:25 +02:00
|
|
|
"names": [ "opencdmp-plans-test", "opencdmp-descriptions-test" ],
|
2024-04-29 16:55:53 +02:00
|
|
|
"privileges": [ "all" ]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}'
|
|
|
|
|
2024-05-09 16:55:24 +02:00
|
|
|
curl -XPOST "localhost:9200/_security/user/opencdmp-api-test?pretty" -u elastic:elastic -H 'Content-Type: application/json' -d'
|
2024-04-29 16:55:53 +02:00
|
|
|
{
|
2024-05-13 15:30:25 +02:00
|
|
|
"password" : "opencdmp",
|
2024-05-09 16:55:24 +02:00
|
|
|
"roles" : [ "opencdmp-api-test" ]
|
2024-05-13 15:30:25 +02:00
|
|
|
}'
|
|
|
|
|
|
|
|
elasticsearch-plugin install analysis-icu
|