Re: ZFS pool unexpected name change
Dag-Erling Smørgrav <[email protected]> Mon, 15 Jun 2026 13:57:21 +0200
| Newsgroups | gmane.os.freebsd.questions |
|---|---|
| Message-ID | <[email protected]> |
David Christensen <[email protected]> writes: > Around FreeBSD 13.3 RELEASE, I created a virtual machine with two ZFS > pools: [...] Since upgrading to FreeBSD 14.4-RELEASE, I am unable to > import the pools: [...] Note that both pools now have the name > "vf2zpool2". [...] I did not purposefully rename either pool. Why > do both pools now have the same name? Most likely, at some point you tried to import both pools at once like this: # zpool import vf2zpool1 vf2zpool2 What this actually does is rename vf2zpool1 to vf2zpool2 and then import it. The fix is to import vf2zpool1 under its correct name: # zpool import 15782797086784599572 vf2zpool1 then import vf2zpool2 as usual: # zpool import vf2zpool2 and everything will be back to normal. DES -- Dag-Erling Smørgrav - [email protected]