Please follow the below steps to know how to backup the Skedler index and the internal DB file.
1. Backup internal DB,
For the Linux system, the path will be
Database_path: /var/lib/skedler/skedler.db Database_history_path: /var/lib/skedler/skedlerHistory.db
For the Windows system, the path will be
Database_path: "C:\\skedler\\skedler.db" Database_history_path: "C:\\skedler\\skedlerHistory.db"
2. Backup skedler index from elasticsearch,
Go to Kibana dev tools and start to reindex skedler index,POST /_reindex?pretty
{
"source": {
"index": ".skedler"
},
"dest": {
"index": ".skedler-backup"
}
}
POST /_reindex?pretty
{
"source": {
"index": ".skedler"
},
"dest": {
"index": ".skedler-backup"
}
}
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article