Index directory

I received data from logstash and store them into index via opensearch. and I could get query via discover.
I created a new disk and mount it (ext4)
the following line is my fstab line:
/dev/sda1 /mnt/opensearch-db ext4 rw,user=opensearch 0 0
then chown opensearch:opensearch /mnt/opensearch-db ;mount -a

then mkdir /mnt/opensearch-db/opensearch-db ; cp -rp /var/lib/opensearch/* /mnt/opensearch-db/opensearch-db

then change path.data /mnt/opensearch-db/opensearch-db
After restart opensearch, I can see with df and /mnt/opensearch-db is increased.
Even I can see list of my index in web UI.
But when I click on discover, It mentioned to I have to create index pattern

How can i access to my data?

can you still see .kibana index? do you have multi tenant enabled for OSD and what’s the curretn tenant?

I solved. I deleted my files and stop opensearch, then cp -rvp from old files to new location then remove node.lock file then start opensearch.