Pool offline after migrating TrueNas Core VM

Joined
Aug 20, 2021
Messages
2
So my nas is currently running in a VM under proxmox and I have been using disk passthrough to get disks to TrueNas. Unfortunately after migrating the host to another server my passed-through disks got mixed up and I ended up re-passing them through, however now my pool no longer recognizes them and is simply label as being "offline". The pool in question is comprised of two disks in a mirror setup. Does anyone know how to re-associate the disks to their pool?
 
Joined
Aug 20, 2021
Messages
2
Figured it out. With zpool import I was able to find the pool that was down and it was able to automatically go back online. Not sure how to do this with the GUI but here is the cli that I used just in case anyone runs into a similar issue as me.

Code:
root@truenas[~]# zpool import
   pool: Tank
     id: 7953676398825845872
  state: ONLINE
 action: The pool can be imported using its name or numeric identifier.
 config:
        Tank                                            ONLINE
          mirror-0                                      ONLINE
            gptid/6a437266-8782-11eb-a58a-d95544fe6fc9  ONLINE
            da2p2                                       ONLINE
root@truenas[~]# zpool import Tank
root@truenas[~]#
 
Top