我在Ubuntu 14.04上创建了一个ZFS池而没有指定RAID或冗余选项,向它写了一些数据,重新启动了机器并且池不再可用(UNAVAIL).我手头没有确切的错误,但它提到没有足够的复制可用.我在池中创建了两个数据存储区,其中包含2个3TB磁盘.我建议ZFS使用重复数据删除功能,此时我并不关心冗余.
我实际上只想要RAID0,所以短期内不需要镜像或冗余.有没有办法用ZFS做到这一点,或者我会更好地使用LVM?
zpool status -v:
sudo zpool status -v
pool: cryptoporticus
state: UNAVAIL
status: One or more devices could not be used because the label is missing
or invalid. There are insufficient replicas for the pool to continue
functioning.
action: Destroy and re-create the pool from
a backup source.
see: http://zfsonlinux.org/msg/ZFS-8000-5E
scan: none requested
config:
NAME STATE READ WRITE CKSUM
cryptoporticus UNAVAIL 0 0 0 insufficient replicas
sda ONLINE 0 0 0
sdc UNAVAIL 0 0 0
UPDATE
zpool export cyrptoporticus,然后zpool import cryptoporticus解决了这个问题.这可能会在重启时再次发生吗?