Self-Hosting Deployment Questions with CENTOS

Hi @jeyraman,

It looks like the ActivitySpec index didn’t completely initialize for some reason; to fix this, please run the following command after saving the file contents below as spec.json. (Please replace all variables with your environment’s specific ones before running!)

That should fix it!

command:

curl \
  -XPOST \ 
  https://admin:YOUR_DB_PASSWORD_HERE@YOUR_DB_DOMAIN_HERE/activity_spec/_bulk_docs \
  -H 'Content-Type: application/json' \
  -d @spec.json

spec.json:

{
  "docs": [
    {
      "_id": "lamp.3d_figure_copy"
    },
    {
      "_id": "lamp.balloon_risk"
    },
    {
      "_id": "lamp.breathe"
    },
    {
      "_id": "lamp.cats_and_dogs"
    },
    {
      "_id": "lamp.cats_and_dogs_new"
    },
    {
      "_id": "lamp.dbt_diary_card"
    },
    {
      "_id": "lamp.digit_span"
    },
    {
      "_id": "lamp.jewels_a"
    },
    {
      "_id": "lamp.jewels_b"
    },
    {
      "_id": "lamp.journal"
    },
    {
      "_id": "lamp.nback"
    },
    {
      "_id": "lamp.nback_new"
    },
    {
      "_id": "lamp.pop_the_bubbles"
    },
    {
      "_id": "lamp.scratch_image"
    },
    {
      "_id": "lamp.serial7s"
    },
    {
      "_id": "lamp.simple_memory"
    },
    {
      "_id": "lamp.spatial_span"
    },
    {
      "_id": "lamp.spin_wheel"
    },
    {
      "_id": "lamp.survey"
    },
    {
      "_id": "lamp.temporal_order"
    },
    {
      "_id": "lamp.tips"
    },
    {
      "_id": "lamp.trails_b"
    },
    {
      "_id": "lamp.trails_b_dot_touch"
    },
    {
      "_id": "lamp.trails_b_new"
    },
    {
      "_id": "lamp.visual_association"
    }
  ]
}
1 Like