On-Prem: Haiilo Index

In diesem Artikel zeigen wir euch, welche Indexe eine bestimmte Haiilo Version besitzt und wie ihr sie erneuern könnt.
 
Hinweis:
Dieser Artikel ist aufgrund seiner technischen Natur nur in Englisch verfügbar. Falls ihr Fragen haben solltet, wendet euch gerne an unseren Service Desk. 
 

Haiilo provides some managing endpoints to help you perform some operations and maintenance tasks.

All endpoints are protected with the basic auth credentials of the corresponding platform. The credentials can be found under COYO_MANAGEMENT_USERandCOYO_MANAGEMENT_PASSWORDin your .env file.

Use the following syntax to access these endpoints:

curl -u "$COYO_MANAGEMENT_USER>:$COYO_MANAGEMENT_PASSWORD" -X "POST" $COYO_BACKEND_URL/ENDPOINT

Use the following syntax to access these endpoints if a request body is required:

curl -u "$COYO_MANAGEMENT_USER>:$COYO_MANAGEMENT_PASSWORD" -X POST $COYO_BACKEND_URL/ENDPOINT \
    -H 'content-type: application/json' \
    -d '{"BODY_KEY1": "BODY_VALUE1"}'

For example, if you want to refresh the index "search:file":

curl -u "admin:admin" -X POST http://local.coyo4.com/manage/backend/index/refresh \
    -H 'content-type: application/json' \
    -d '{"indexNames" : [ "search:file" ], "update" : true, "delete" : true}'

War dieser Beitrag hilfreich?