Error when extending pool

BlueJ007

Dabbler
Joined
Jun 25, 2018
Messages
12
I have a pool with 2 x RAIDZ2 vdevs, each with 6 drives, and I am attempting to add another 6 drive RAIDZ2 vdev, but I'm receiving the following error: "Command '('dd', 'if=/dev/zero', 'of=/dev/ada2p2', 'bs=1m', 'count=32')' returned non-zero exit status 1." Anyone ideas what to check?

Also, here are the details from the More info section:
Error: Traceback (most recent call last):

File "/usr/local/lib/python3.6/site-packages/tastypie/resources.py", line 219, in wrapper
response = callback(request, *args, **kwargs)

File "./freenasUI/api/resources.py", line 1450, in dispatch_list
request, **kwargs

File "/usr/local/lib/python3.6/site-packages/tastypie/resources.py", line 450, in dispatch_list
return self.dispatch('list', request, **kwargs)

File "./freenasUI/api/utils.py", line 252, in dispatch
request_type, request, *args, **kwargs

File "/usr/local/lib/python3.6/site-packages/tastypie/resources.py", line 482, in dispatch
response = method(request, **kwargs)

File "/usr/local/lib/python3.6/site-packages/tastypie/resources.py", line 1384, in post_list
updated_bundle = self.obj_create(bundle, **self.remove_api_resource_names(kwargs))

File "/usr/local/lib/python3.6/site-packages/tastypie/resources.py", line 2175, in obj_create
return self.save(bundle)

File "./freenasUI/api/utils.py", line 491, in save
form.save()

File "./freenasUI/storage/forms.py", line 316, in save
raise e

File "./freenasUI/storage/forms.py", line 310, in save
c.call("alert.unblock_source", lock)

File "./freenasUI/storage/forms.py", line 300, in save
group)

File "./freenasUI/middleware/notifier.py", line 832, in zfs_volume_attach_group
vdevs = self.__prepare_zfs_vdev(group['disks'], swapsize, encrypt, volume)

File "./freenasUI/middleware/notifier.py", line 698, in __prepare_zfs_vdev
sync=False)

File "./freenasUI/middleware/notifier.py", line 341, in __gpt_labeldisk
c.call('disk.wipe', devname, 'QUICK', False, job=True)

File "./freenasUI/middleware/notifier.py", line 341, in __gpt_labeldisk
c.call('disk.wipe', devname, 'QUICK', False, job=True)

File "/usr/local/lib/python3.6/site-packages/middlewared/client/client.py", line 477, in call
raise ClientException(job['error'], trace=job['exception'])

middlewared.client.client.ClientException: Command '('dd', 'if=/dev/zero', 'of=/dev/ada2p2', 'bs=1m', 'count=32')' returned non-zero exit status 1.
 

sretalla

Powered by Neutrality
Moderator
Joined
Jan 1, 2016
Messages
9,703
Also, here are the details from the More info section:
...
Command '('dd', 'if=/dev/zero', 'of=/dev/ada2p2', 'bs=1m', 'count=32')' returned non-zero exit status 1.
This part is telling you that an attempt to write 32MB worth of zeroes to ada2 didn't work.

You should check if there's an issue with ada2 and/or the cabling to it.
 

BlueJ007

Dabbler
Joined
Jun 25, 2018
Messages
12
This part is telling you that an attempt to write 32MB worth of zeroes to ada2 didn't work.

You should check if there's an issue with ada2 and/or the cabling to it.

I guess one of the SATA cables was barely loose despite having locking clips and showing under Disks. I disconnected and reconnected the cable and all is working now. Thanks!
 
Top