zpool import doesn't list zpool

spyroot

Cadet
Joined
Aug 29, 2020
Messages
9
Hi Folks,

I upgrade my system to 11.3 latest code. I imported my second zpool via zpool import cli
and it mounted.

In list below pool share not listed in WEB UI, nor if I press add it list in UI as well, meanwhile it already mounted
and cross that pool is in an operational state. I've tried to unmount set mount point/remount but it same story.
Code:
NAME           SIZE  ALLOC   FREE  CKPOINT  EXPANDSZ   FRAG    CAP  DEDUP  HEALTH  ALTROOT
freenas-boot   232G  3.30G   229G        -         -      -     1%  1.00x  ONLINE  -
share               21.8T  9.56T  12.2T        -         -    30%    43%  1.41x  ONLINE  -
sharessd        2.72T   699G  2.04T        -         -    49%    25%  1.00x  ONLINE  /mnt


  pool: freenas-boot
 state: ONLINE
  scan: none requested
config:

    NAME        STATE     READ WRITE CKSUM
    freenas-boot  ONLINE       0     0     0
      ada4p2    ONLINE       0     0     0

errors: No known data errors

  pool: share
 state: ONLINE
  scan: none requested
config:

    NAME                                          STATE     READ WRITE CKSUM
    share                                         ONLINE       0     0     0
      gptid/f1122986-0911-11e7-a14a-ac1f6b054686  ONLINE       0     0     0
      gptid/f1228f3d-0911-11e7-a14a-ac1f6b054686  ONLINE       0     0     0
      gptid/f14866aa-0911-11e7-a14a-ac1f6b054686  ONLINE       0     0     0
      gptid/f159a50e-0911-11e7-a14a-ac1f6b054686  ONLINE       0     0     0

errors: No known data errors

  pool: sharessd
 state: ONLINE
  scan: scrub repaired 0 in 0 days 00:14:03 with 0 errors on Sun Aug 30 00:14:03 2020
config:

    NAME                                          STATE     READ WRITE CKSUM
    sharessd                                      ONLINE       0     0     0
      gptid/5e2aa3cc-091f-11e7-a14a-ac1f6b054686  ONLINE       0     0     0
      gptid/5e3b6f60-091f-11e7-a14a-ac1f6b054686  ONLINE       0     0     0
      gptid/5e477b50-091f-11e7-a14a-ac1f6b054686  ONLINE       0     0     0

errors: No known data errors



Code:
NAME                                                        USED  AVAIL  REFER  MOUNTPOINT
freenas-boot                                               3.30G   221G   176K  none
freenas-boot/ROOT                                          3.28G   221G   136K  none
freenas-boot/ROOT/11.1-U7                                  1017M   221G  1018M  /
freenas-boot/ROOT/11.3-U4.1                                2.29G   221G  1.33G  /
freenas-boot/ROOT/Initial-Install                             8K   221G   973M  legacy
freenas-boot/ROOT/Wizard-2020-08-28_22-08-48                  8K   221G   973M  legacy
freenas-boot/ROOT/default                                   232K   221G   973M  legacy
freenas-boot/grub                                          7.32M   221G  7.32M  legacy
share                                                      11.1T  9.98T  37.8G  /mnt/share
share/smb                                                  8.99T  9.98T  8.99T  /mnt/share/smb
share/vms                                                  2.06T  11.5T   548G  -
sharessd                                                   2.07T   582G    92K  /mnt/sharessd
sharessd/.system                                            213M   582G    96K  legacy
sharessd/.system/configs-76c11d7f8a944b3d8e42fe35420dbaa3  2.35M   582G  2.35M  legacy
sharessd/.system/cores                                     9.72M   582G  9.72M  legacy
sharessd/.system/rrd-76c11d7f8a944b3d8e42fe35420dbaa3       196M   582G   196M  legacy
sharessd/.system/samba4                                    3.84M   582G  3.84M  legacy
sharessd/.system/syslog-76c11d7f8a944b3d8e42fe35420dbaa3   1.23M   582G  1.23M  legacy
sharessd/.system/webui                                       88K   582G    88K  legacy
sharessd/vms                                               2.06T  1.95T   697G  -
 

Heracles

Wizard
Joined
Feb 2, 2018
Messages
1,401
Hey Spyroot,

That looks like a pool without any redundancy. The moment a single drive in it fails, the entire pool will be lost. As such, instead of safeguarding your data as it should, your FreeNAS server multiply the risk of loosing it all.

These pools should be emptied and rebuilt with some kind of redundancy. Also, for a total pool of that size, even Raid-Z1 should not be trusted. So instead of fixing your config, I recommend you to re-design that system and to re-build it from scratch so you have a decent redundancy in it.
 

spyroot

Cadet
Joined
Aug 29, 2020
Messages
9
Yes, you are correct but I don't need any redundancy. I backup a pool to slow storage via rsync, so this one just for speed. It attached via 2x10gbe and full strip. one SSD one without. So primary use case for FreeNAS speed. I didn't show another pool ( third one that one has 8xSSD : ) all strip)

So my question why 11.3 doesn't show pool in the Web UI list nor I can't import. (it already imported via CLI) so I assume it should just do zpool , parse and show in UI.

do I miss something? I saw one thread that indicate I need do zpool export and import but then I need somehow disconnect all iscsi since the same zpool used for iSCSI. right now I can't export even with -f flag.
 

sretalla

Powered by Neutrality
Moderator
Joined
Jan 1, 2016
Messages
9,703
If you want the pool to show in the GUI, you need to import it there... in order to do that after importing at CLI, you need to export it at CLI... zpool export share, then you will find it in the list to import in the GUI.

... but also pay attention to what @Heracles said.
 
Top