IO失败导致一个或多个设备故障

One or more devices are faulted in response to IO failures.

Code:

Checking status of zfs pools:

NAME    SIZE  ALLOC   FREE  EXPANDSZ   FRAG CAP  DEDUP  HEALTH  ALTROOT

Media  16.2T  5.06T  11.2T  -  6% 31%  1.00x  ONLINE  /mnt

VM_Disk 117G  10.2G   107G  -  4%  8%  1.00x  ONLINE  /mnt

freenas-boot  57.5G  2.80G  54.7G  -   -  4%  1.00x  ONLINE  -

  pool: freenas-boot

 state: ONLINE

status: One or more devices are faulted in response to IO failures.

action: Make sure the affected devices are connected, then run 'zpool clear'.

   see: http://illumos.org/msg/ZFS-8000-HC

  scan: scrub in progress since Sun Jul  9 03:45:00 2017

1.82G scanned out of 2.79G at 22.8K/s, 12h26m to go

0 repaired, 65.16% done

config:

NAME STATE  READ WRITE CKSUM

freenas-boot  ONLINE    1 10  0

  da6p2  ONLINE    0 32  0

errors: 3 data errors, use '-v' for a list

Local system status:

 3:01AM  up 5 days, 11:55, 0 users, load averages: 0.01, 0.08, 0.07

-- End of daily output --

and then this one

Code:

cannot get history for 'freenas-boot': pool I/O is currently suspended

cannot get history for 'freenas-boot': pool I/O is currently suspended

   skipping scrubbing of pool 'freenas-boot':

  can't get last scrubbing date

Once I got home I tried to access the GUI and it would not load, I tried to access via SSH and got no response.
All my jails were still running and accessible.
So I reset the machine and now it says there are no errors.

Code:

root@FreeNAS:~ # zpool status -v

  pool: Media

 state: ONLINE

  scan: scrub repaired 0 in 3h55m with 0 errors on Sun Jul  2 04:30:27 2017

config:

NAME STATE  READ WRITE CKSUM

Media    ONLINE    0  0  0

  raidz1-0   ONLINE    0  0  0

gptid/6817d49b-dd80-11e5-96c2-d05099c00c66  ONLINE    0  0  0

gptid/68fb7018-dd80-11e5-96c2-d05099c00c66  ONLINE    0  0  0

gptid/69dbbaca-dd80-11e5-96c2-d05099c00c66  ONLINE    0  0  0

gptid/6ab7c822-dd80-11e5-96c2-d05099c00c66  ONLINE    0  0  0

gptid/6b99a30e-dd80-11e5-96c2-d05099c00c66  ONLINE    0  0  0

gptid/6c7aadf1-dd80-11e5-96c2-d05099c00c66  ONLINE    0  0  0

errors: No known data errors

  pool: VM_Disk

 state: ONLINE

  scan: none requested

config:

NAME   STATE  READ WRITE CKSUM

VM_Disk    ONLINE    0  0  0

  gptid/86f788f5-628b-11e7-8406-002590826ed0  ONLINE    0  0  0

errors: No known data errors

  pool: freenas-boot

 state: ONLINE

  scan: scrub repaired 0 in 35h53m with 0 errors on Mon Jul 10 15:38:32 2017

config:

NAME STATE  READ WRITE CKSUM

freenas-boot  ONLINE    0  0  0

  da6p2  ONLINE    0  0  0

errors: No known data errors

So I'm a little confused, some thing happened, I was unable to access the interface, and it generated the email.
But now after the restart it appears to be fine.
Is my flash drive going? it is less than a month old.

camcontrol devlist shows the following



root@FreeNAS:~ # camcontrol devlist

<ADATA SU800 Q0125A>    at scb

Code:

root@FreeNAS:~ # camcontrol devlist

<ADATA SU800 Q0125A>    at scbus2 target 0 lun 0 (pass0,ada0)

<LSI SAS2X36 0e0b>  at scbus7 target 8 lun 0 (pass1,ses0)

<ATA WDC WD30EFRX-68E 0A82> at scbus7 target 10 lun 0 (pass2,da0)

<ATA WDC WD30EFRX-68E 0A82> at scbus7 target 11 lun 0 (pass3,da1)

<ATA WDC WD30EFRX-68E 0A82> at scbus7 target 12 lun 0 (pass4,da2)

<ATA WDC WD30EFRX-68E 0A82> at scbus7 target 13 lun 0 (pass5,da3)

<ATA WDC WD30EFRX-68E 0A82> at scbus7 target 14 lun 0 (pass6,da4)

<ATA WDC WD30EFRX-68E 0A82> at scbus7 target 15 lun 0 (pass7,da5)

<SanDisk Ultra Fit 1.00>    at scbus9 target 0 lun 0 (pass8,da6)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
根据提供的引用内容,当出现"IO错误: The Network Adapter could not establish the connection"时,通常表示无法建立连接的网络适配器。这可能是由于以下原因之一引起的: 1. 网络连接问题:检查网络连接是否正常,确保网络适配器可以访问所需的网络资源。 2. 防火墙设置:检查防火墙设置,确保允许网络适配器与所需的服务器进行通信。 3. 服务器故障:如果问题是在特定服务器上发生的,可能是服务器故障导致的。请联系服务器管理员以获取更多帮助。 4. IP地址或端口错误:确保使用正确的IP地址和端口号进行连接。检查配置文件或代码中的连接参数。 以下是一个Java示例,演示如何处理此错误: ```java import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; public class ConnectionExample { public static void main(String[] args) { String url = "jdbc:mysql://localhost:3306/mydatabase"; String username = "root"; String password = "password"; try { Connection connection = DriverManager.getConnection(url, username, password); System.out.println("Connection established successfully!"); // 执行其他操作... connection.close(); } catch (SQLException e) { System.out.println("Failed to establish connection: " + e.getMessage()); } } } ``` 请注意,此示例使用Java的JDBC连接MySQL数据库。您需要将URL,用户名和密码更改为适合您的环境的值。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值