Diagnose and replace the defective disk
You can check the status of the disk using SMART (Self-Monitoring, Analysis and Reporting Technology) attributes.If the test results show that the disk is faulty, you can replace the faulty disk.
Check disk condition
1. Get SMART attributes
The method of obtaining SMART attributes depends on the operating system installed on the server and the way the disk is connected to the server:
- without RAID controller — the disk is connected directly to the motherboard or through an HBA controller;
- via RAID controller — the disk is connected via an Adaptec or MegaRAID controller installed on the server.
Linux
Windows
Without RAID controller
Adaptec
MegaRAID
-
Install the
smartmontools
package, which is a set of utilities for monitoring the health of SMART-enabled HDDs and SSDs.apt-get install smartmontools
-
Output information about the disks connected to the server:
lsblk
Disk information will appear in the response. Memorize or copy the disk IDs. For example:
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
sda 8:0 0 1.8T 0 disk
└─sda1 8:1 0 1.8T 0 part /mnt/data
sdb 8:16 0 931.5G 0 disk
└─sdb1 8:17 0 931.5G 0 part /mnt/backup
nvme0n1 259:0 0 465.8G 0 disk
├─nvme0n1p1 259:1 0 512M 0 part /boot/efi
├─nvme0n1p2 259:2 0 16G 0 part [SWAP]
└─nvme0n1p3 259:3 0 449.3G 0 part /Here
sda
,sdb
,nvme0n1
are disk identifiers. -
Start reading SMART attributes. The command to run depends on the disk interface:
- for SATA:
smartctl -iA /dev/<disk_id>
Specify
<disk_id>
is the disk ID of the disk you copied in step 3.- for NVME:
nvme smart-log /dev/<disk_id>
Specify
<disk_id>
is the disk ID of the disk you copied in step 3.
-
Install the
smartmontools
package, which is a set of utilities for monitoring the health of SMART-enabled HDDs and SSDs.apt-get install smartmontools
-
Get the RAID controller numbers:
arcconf LIST
RAID controller information will appear in the response. Memorize or copy the RAID controller number. For example:
Controllers found: 1
----------------------------------------------------------------------
Controller information
----------------------------------------------------------------------
Controller ID : Status, Slot, Mode, Name, SerialNumber, WWN
----------------------------------------------------------------------
Controller 1: : Optimal, Slot 3, RAID, Adaptec SmartRAID, 0X00XXXX000, 50000D0000X01234Here
1
inController 1
is the RAID controller number. -
Get the disk IDs and channel numbers where the disks are connected to the RAID controller:
arcconf getconfig <raid_number>
Specify
<raid_number>
is the RAID controller number you copied in step 3.Disk information will appear in the response. Memorize or copy the disk IDs and channel numbers. For example:
----------------------------------------------------------------------
Physical Device information
----------------------------------------------------------------------
Device #5
Device is a Hard drive
State : Online
Supported : Yes
Transfer Speed : SATA 3.0 Gb/s
Reported Channel,Device(T:L) : 0,5(5:0)Here
Reported Channel,Device(T:L): 0,5(5,0)
is information about the disk connected to the controller, where:0
— number of the controller channel to which the disk is connected;5
— disk ID on the controller.
-
Get the SCSI device IDs:
sg_map
A list of SCSI devices
(/dev/sg\\\\*
) matching block disks (/dev/sd\\\*
) will appear in the response. Memorize or copy the SCSI device IDs. For example:/dev/sg0 /dev/sda
/dev/sg1 /dev/sdbHere
sg0
,sg1
are identifiers of SCSI devices. -
Start reading the SMART attributes:
smartctl -iA -d aacraid,<raid_number>,<logical_unit_number>,<device_id> /dev/<scsi_id>
Specify:
<raid_number>
— number of the RAID controller you copied in step 3;<logical_unit_number>
— number of the disk channel you copied in step 4;<device_id>
— the ID of the disk on the RAID controller that you copied in step 4;<scsi_id>
— the SCSI device ID that you copied in step 5.
-
Install the
smartmontools
package, which is a set of utilities for monitoring the health of SMART-enabled HDDs and SSDs.apt-get install smartmontools
-
Get the RAID controller numbers:
storcli64 show all
RAID controller information will appear in the response. Memorize or copy the RAID controller number. For example:
System Overview :
===============
------------------------------------------------------------------------------------
Ctl Model Ports PDs DGs DNOpt VDs VNOpt BBU sPR DS EHS ASOs Hlth
------------------------------------------------------------------------------------
0 AVAGOMegaRAIDSAS9361-8i 8 4 2 0 2 0 Opt On 1&2 Y 3 Opt
------------------------------------------------------------------------------------Here
0
in theCtl
field is the RAID controller number. -
Get the indexes of the disks that are installed on the RAID controller:
storcli /c<raid_number> show all
Specify
<raid_number>
is the RAID controller number you copied in step 3.The response will show information about the disks connected to the RAID controller. Memorize or copy the indexes of the disks. For example:
Drive Information :
---------------------------------------------------------------------------------
EID:Slt DID State DG Size Intf Med SED PI SeSz Model Sp Type
---------------------------------------------------------------------------------
252:4 39 Onln 1 446.625 GB SATA SSD N N 512B INTEL SSDSC2KB480G8 U -
252:5 40 Onln 0 893.750 GB SATA SSD N N 512B INTEL SSDSC2KB960G8 U -
---------------------------------------------------------------------------------Here the values
39
,40
in theDID
field are disk indexes. -
Get the IDs of the disks that are installed on the RAID controller:
lsscsi
Disk information will appear in the response. Memorize or copy the disk IDs. For example:
[32:0:0:0] disk LSI MR9271-8i 3.46 /dev/sda
[32:1:0:0] disk LSI MR9271-8i 3.46 /dev/sdbHere
sda
,sdb
are disk identifiers. -
Start reading the SMART attributes:
smartctl -iA -d megaraid,<disk_index> /dev/<disk_id>
Specify:
<disk_index>
— index of the disk you copied in step 4;<disk_id>
— the disk ID of the disk you copied in step 5.
Without RAID controller
Adaptec
MegaRAID
-
Install smartmontools, a set of utilities for monitoring the health of SMART-enabled HDDs and SSDs.
-
Run PowerShell as an administrator.
-
Get the disk IDs:
smartctl --scan
Disk information will appear in the response. Memorize or copy the disk IDs. For example:
/dev/sda -d ata # Kingston SSD
/dev/sdb -d ata # Seagate HDD
/dev/nvme0 -d nvme # Samsung NVMeHere
sda
,sdb
,nvme0
are disk identifiers. -
Start reading SMART attributes. The command to run depends on the disk interface:
smartctl -A /dev/<disk_id>
Specify
<disk_id>
is the disk ID of the disk you copied in step 4.
-
Download and install Adaptec maxView Storage Manager is a graphical interface for managing and monitoring Adaptec RAID controllers. You can use it to view SMART attributes for each physical disk.
-
Start maxView Storage Manager.
-
From the Enterprise View menu, expand the list of disks for the desired RAID controller.
-
Select a disk.
-
Open the SMART tab.
-
Download and install StorCLI, which is a utility for managing MegaRAID RAID controllers.
-
Run PowerShell as an administrator.
-
Get the RAID controller numbers:
storcli64 show all
RAID controller information will appear in the response. Memorize or copy the RAID controller number. For example:
System Overview :
===============
------------------------------------------------------------------------------------
Ctl Model Ports PDs DGs DNOpt VDs VNOpt BBU sPR DS EHS ASOs Hlth
------------------------------------------------------------------------------------
0 AVAGOMegaRAIDSAS9361-8i 8 4 2 0 2 0 Opt On 1&2 Y 3 Opt
------------------------------------------------------------------------------------Here
0
in theCtl
field is the RAID controller number. -
Get the enclosure ID and slot numbers where the disks on the RAID controller are installed:
storcli /c<raid_number> /eall /sall show all
Specify
<raid_number>
is the RAID controller number that you copied in step 4.Disk information will appear in the response. Memorize or copy the enclosure ID and slot numbers. For example:
Drive Information :
---------------------------------------------------------------------------------
EID:Slt DID State DG Size Intf Med SED PI SeSz Model Sp Type
---------------------------------------------------------------------------------
252:4 39 Onln 1 446.625 GB SATA SSD N N 512B INTEL SSDSC2KB480G8 U -
252:5 40 Onln 0 893.750 GB SATA SSD N N 512B INTEL SSDSC2KB960G8 U -
---------------------------------------------------------------------------------Here:
- The value
252
in theEID
field is the ID of the enclosure in which the drive is installed; - values
4
,5
in theSlt
field — the number of the slot in the enclosure where the disk is installed.
- The value
-
Start reading the SMART attributes:
storcli /c<raid_number> /e<enclosure_id> /s<slot_id> show all
Specify:
<enclosure_id>
— the enclosure ID you copied in step 5;<slot_id>
— number of the slot in the enclosure that you copied in step 5.
2. Assess SMART attributes
A disk is considered faulty if at least one of the SMART attributes fits the specified conditions.
HDD disks
SSD drives
NVME drives
Replace a defective disk
You can determine if a disk is faulty by checking the status of the disk.If the SMART attribute assessment results in a faulty disk, you can initiate a replacement.To do so:
- Get the serial number of the faulty disk.
- Coordinate the replacement of the disk.
- Remove the disk from the RAID array.
- Light up the disk.
- Check the disk in the system.
- Add a disk to a RAID array.
1. Get the serial number of the defective disk
Linux
Windows
Without RAID controller
Adaptec
MegaRAID
-
Get the serial number of the faulty disk, to do this, print the disk information:
lsblk -o name,serial,model
Disk information will appear in the response. Copy the serial number of the failed disk. For example:
NAME SERIAL MODEL
sdb S0H0N0XYZ123456 Samsung SSD 970 EVO Plus 500GB
nvme0n1 S0D0NX0M001234 Samsung SSD 980 PRO 1TBHere
SERIAL
is the serial number of the disk.
-
Get the RAID controller numbers:
arcconf LIST
RAID controller information will appear in the response. Memorize or copy the RAID controller number. For example:
Controllers found: 1
----------------------------------------------------------------------
Controller information
----------------------------------------------------------------------
Controller ID : Status, Slot, Mode, Name, SerialNumber, WWN
----------------------------------------------------------------------
Controller 1: : Optimal, Slot 3, RAID, Adaptec SmartRAID, 0X00XXXX000, 50000D0000X01234Here
1
inController 1
is the RAID controller number. -
Get the serial number of the faulty disk, to do this, print the disk information:
arcconf getconfig <raid_number>
Specify
<raid_number>
is the RAID controller number you copied in step 2.Disk information will appear in the response. Copy the serial number of the failed disk. For example:
----------------------------------------------------------------------
Physical Device information
----------------------------------------------------------------------
Device #5
Device is a Hard drive
State : Online
Block Size : 512 Bytes
Supported : Yes
Programmed Max Speed : SATA 6.0 Gb/s
Transfer Speed : SATA 6.0 Gb/s
Reported Channel,Device(T:L) : 0,5(5:0)
Model : TOSHIBA MG06ACA800
Serial number : Y0Y0A00WWWREHere Serial number is the serial number of the disk.
-
Get the RAID controller numbers:
storcli64 show all
RAID controller information will appear in the response. Memorize or copy the RAID controller number. For example:
System Overview :
===============
------------------------------------------------------------------------------------
Ctl Model Ports PDs DGs DNOpt VDs VNOpt BBU sPR DS EHS ASOs Hlth
------------------------------------------------------------------------------------
0 AVAGOMegaRAIDSAS9361-8i 8 4 2 0 2 0 Opt On 1&2 Y 3 Opt
------------------------------------------------------------------------------------Here
0
in theCtl
field is the RAID controller number. -
Get the serial number of the faulty disk, to do this, print the disk information:
storcli /c<raid_number> show all | grep SN
Specify
<raid_number>
is the RAID controller number you copied in step 2.Disk information will appear in the response. Copy the serial number of the failed disk. For example:
Drive Information :
--------------------------------------------------------------------------------------------
EID:Slt DID State DG Size Intf Med SED PI SeSz Model Sp Type SN
--------------------------------------------------------------------------------------------
252:0 11 Onln 0 1.8 TB SAS HDD N N 512B TOSHIBA MG06ACA800 U U X8X0X000AAAE
252:1 12 Onln 0 1.8 TB SAS HDD N N 512B TOSHIBA MG06ACA800 U U A9A0A00RRRRJ
252:2 13 Onln 0 1.8 TB SAS HDD N N 512B TOSHIBA MG06ACA800 U U W9W0Y00RRHHAHere
SN
is the serial number of the disk.
Without RAID controller
Adaptec
MegaRAID
-
Run PowerShell as an administrator.
-
Get the serial number of the faulty disk, to do this, print the disk information:
wmic diskdrive get model,serialnumber
Disk information will appear in the response. Copy the serial number of the failed disk. For example:
Model SerialNumber
TOSHIBA MG06ACA800 X8X0X000AAAE
TOSHIBA MG06ACA800 A9A0A00RRRRJHere SerialNumber is the serial number of the disk.
-
Start maxView Storage Manager.
-
From the Enterprise View menu, expand the list of disks for the desired RAID controller.
-
Select the faulty disk.
-
Copy the serial number of the disk.
-
Run PowerShell as an administrator.
-
Get the RAID controller numbers:
storcli64 show all
RAID controller information will appear in the response. Memorize or copy the RAID controller number. For example:
System Overview :
===============
------------------------------------------------------------------------------------
Ctl Model Ports PDs DGs DNOpt VDs VNOpt BBU sPR DS EHS ASOs Hlth
------------------------------------------------------------------------------------
0 AVAGOMegaRAIDSAS9361-8i 8 4 2 0 2 0 Opt On 1&2 Y 3 Opt
------------------------------------------------------------------------------------Here
0
in theCtl
field is the RAID controller number. -
Get the serial number of the faulty disk, to do this, print the disk information:
storcli /c<raid_number> show all | grep SN
Specify
<raid_number>
is the RAID controller number you copied in step 2.Disk information will appear in the response. Copy the serial number of the failed disk. For example:
Drive Information :
------------------------------------------------------------------------------
EID:Slt DID State DG Size Intf Med SED PI SeSz Model Sp Type SN
------------------------------------------------------------------------------
252:0 11 Onln 0 1.8 TB SAS HDD N N 512B ST1800MM0129 U U Z1A2B3C4
252:1 12 Onln 0 1.8 TB SAS HDD N N 512B ST1800MM0129 U U Z1A2B3C5
252:2 13 Onln 0 1.8 TB SAS HDD N N 512B ST1800MM0129 U U Z1A2B3C6Here
SN
is the serial number of the disk.
2. Coordinate disk replacement
-
Create a ticket. In the ticket specify:
-
If a disk replacement is agreed upon, a Selectel employee will specify a convenient time and duration of the work for you. The duration of the work will be required to determine when the disk will be illuminated.
3. Remove the disk from the RAID array
If the disk is in a RAID array, remove the disk from the array.
4. Illuminate the disk
At the time scheduled for the work, we will notify you in a ticket that we are ready to proceed with the disk replacement.
If the disk fails to illuminate and the engineers cannot identify it by serial number, we will need to shut down the server to replace the disk.In this case, we will report the problem when identifying the disk and agree on a time to shut down the server in the ticket.
Linux
Windows
Without RAID controller
Adaptec
MegaRAID
To light a disk, put a load on the disk, such as running a write or read operation.If you eject the disk while these operations are in progress, there will be read errors.This is normal behavior because the command is trying to access data on a disk that has already been ejected.
-
Output information about the disks connected to the server:
lsblk
Disk information will appear in the response. Memorize or copy the disk ID. For example:
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
sda 8:0 0 1.8T 0 disk
└─sda1 8:1 0 1.8T 0 part /mnt/data
sdb 8:16 0 931.5G 0 disk
└─sdb1 8:17 0 931.5G 0 part /mnt/backup
nvme0n1 259:0 0 465.8G 0 disk
├─nvme0n1p1 259:1 0 512M 0 part /boot/efi
├─nvme0n1p2 259:2 0 16G 0 part [SWAP]
└─nvme0n1p3 259:3 0 449.3G 0 part /Here
sda
,sdb
,nvme0n1
are disk identifiers. -
Light up the disk:
dd if=/dev/<disk_id> of=/dev/null
Specify
<disk_id>
is the disk ID of the disk you copied in step 2.
-
Get the RAID controller numbers:
arcconf LIST
RAID controller information will appear in the response. Memorize or copy the RAID controller number. For example:
Controllers found: 1
----------------------------------------------------------------------
Controller information
----------------------------------------------------------------------
Controller ID : Status, Slot, Mode, Name, SerialNumber, WWN
----------------------------------------------------------------------
Controller 1: : Optimal, Slot 3, RAID, Adaptec SmartRAID, 0X00XXXX000, 50000D0000X01234Here
1
inController 1
is the RAID controller number. -
Get the disk ID and the channel number on which the disk is connected to the RAID controller::
arcconf getconfig <raid_number>
Specify
<raid_number>
is the RAID controller number you copied in step 2.Disk information will appear in the response. Memorize or copy the disk ID and channel number. For example:
----------------------------------------------------------------------
Physical Device information
----------------------------------------------------------------------
Device #5
Device is a Hard drive
State : Online
Supported : Yes
Transfer Speed : SATA 3.0 Gb/s
Reported Channel,Device(T:L) : 0,5(5:0)Here
Reported Channel,Device(T:L): 0,5(5,0)
is information about the disk connected to the controller, where:0
— number of the controller channel to which the disk is connected;5
— disk ID on the controller.
-
Light up the disk:
arcconf IDENTIFY <raid_number> DEVICE <channel_id> <device_id> ... [TIME <blink_time>][nologs]
Specify:
<raid_number>
— number of the RAID controller you copied in step 2;<channel_id>
— the channel number you copied in step 3;<device_id>
— the ID of the disk on the RAID controller that you copied in step 3;<blink_time>
— duration of the display in seconds. The disk must be illuminated until it is replaced. In the ticket you can specify the approximate time of work.
-
Get the RAID controller numbers:
storcli64 show all
RAID controller information will appear in the response. Memorize or copy the RAID controller number. For example:
System Overview :
===============
------------------------------------------------------------------------------------
Ctl Model Ports PDs DGs DNOpt VDs VNOpt BBU sPR DS EHS ASOs Hlth
------------------------------------------------------------------------------------
0 AVAGOMegaRAIDSAS9361-8i 8 4 2 0 2 0 Opt On 1&2 Y 3 Opt
------------------------------------------------------------------------------------Here
0
in theCtl
field is the RAID controller number. -
Get the enclosure ID and the slot number where the disk is installed on the RAID controller:
storcli /c<raid_number> show all
Specify
<raid_number>
is the RAID controller number you copied in step 2.The response will show information about the disks connected to the RAID controller. Memorize or copy the enclosure ID and slot number. For example:
Drive Information :
---------------------------------------------------------------------------------
EID:Slt DID State DG Size Intf Med SED PI SeSz Model Sp Type
---------------------------------------------------------------------------------
252:4 39 Onln 1 446.625 GB SATA SSD N N 512B INTEL SSDSC2KB480G8 U -
252:5 40 Onln 0 893.750 GB SATA SSD N N 512B INTEL SSDSC2KB960G8 U -
---------------------------------------------------------------------------------Here:
- The value
252
in theEID
field is the ID of the enclosure in which the drive is installed; - values
4
,5
in theSlt
field — the number of the slot in the enclosure where the disk is installed.
- The value
-
Light up the disk:
storcli /c<raid_number>/e<enclosure_id>/s<slot_id> start locate
Specify:
<raid_number>
— The number of the RAID controller to which the disk is connected;<enclosure_id>
— the enclosure ID you copied in step 3;<slot_id>
— number of the slot in the enclosure that you copied in step 3.
Without RAID controller
Adaptec
MegaRAID
To light a disk, put a load on the disk, such as running a write or read operation.If you eject the disk while these operations are in progress, there will be read errors.This is normal behavior because the command is trying to access data on a disk that has already been ejected.
-
Run PowerShell as an administrator.
-
Light up the disk:
diskspd -b128K -d<blink_time> -h -o32 -t8 -r <disk_volume>
Specify:
<blink_time>
— duration of the display in seconds. The disk must be illuminated until it is replaced. In the ticket you can specify the approximate time of work;<disk_volume>
— volume on a disk, such asC:
.
-
Start maxView Storage Manager.
-
From the Enterprise View menu, expand the list of disks for the desired RAID controller.
-
Select a disk.
-
Click Locate.
-
Run PowerShell as an administrator.
-
Get the RAID controller numbers:
storcli64 show all
RAID controller information will appear in the response. Memorize or copy the RAID controller number. For example:
System Overview :
===============
------------------------------------------------------------------------------------
Ctl Model Ports PDs DGs DNOpt VDs VNOpt BBU sPR DS EHS ASOs Hlth
------------------------------------------------------------------------------------
0 AVAGOMegaRAIDSAS9361-8i 8 4 2 0 2 0 Opt On 1&2 Y 3 Opt
------------------------------------------------------------------------------------Here
0
in theCtl
field is the RAID controller number. -
Get the enclosure ID and the slot number where the disk is installed on the RAID controller:
storcli /c<raid_number> show all
Specify
<raid_number>
is the RAID controller number you copied in step 3.Disk information will appear in the response. Memorize or copy the enclosure ID and slot numbers. For example:
Drive Information :
---------------------------------------------------------------------------------
EID:Slt DID State DG Size Intf Med SED PI SeSz Model Sp Type
---------------------------------------------------------------------------------
252:4 39 Onln 1 446.625 GB SATA SSD N N 512B INTEL SSDSC2KB480G8 U -
252:5 40 Onln 0 893.750 GB SATA SSD N N 512B INTEL SSDSC2KB960G8 U -
---------------------------------------------------------------------------------Here:
- The value
252
in theEID
field is the ID of the enclosure in which the drive is installed; - values
4
,5
in theSlt
field — the number of the slot in the enclosure where the disk is installed.
- The value
-
Light up the disk:
storcli /c<raid_number>/e<enclosure_id>/s<slot_id> start locate
Specify:
<raid_number>
— number of the RAID controller you copied in step 3;<enclosure_id>
— the enclosure ID you copied in step 4;<slot_id>
— number of the slot in the enclosure that you copied in step 4.
5. Check the disk in the system
Linux
Windows
Without RAID controller
Adaptec
MegaRAID
-
Wait for a message on the ticket that the disk has been replaced.
-
Verify that the drive has initialized to the system:
lsblk
-
If the disk is not in the list, reboot the server. If after the reboot the disk is not initialized in the system, report it in the ticket.
-
Wait for a message on the ticket that the disk has been replaced.
-
Verify that the drive has initialized to the system:
3.1 Obtain the RAID controller numbers:
arcconf LIST
RAID controller information will appear in the response. Memorize or copy the RAID controller number. For example:
Controllers found: 1
----------------------------------------------------------------------
Controller information
----------------------------------------------------------------------
Controller ID : Status, Slot, Mode, Name, SerialNumber, WWN
----------------------------------------------------------------------
Controller 1: : Optimal, Slot 3, RAID, Adaptec SmartRAID, 0X00XXXX000, 50000D0000X01234Here
1
inController 1
is the RAID controller number.3.2 Get information about the disks that are connected to the RAID controller:
arcconf getconfig <raid-number>
Specify
<raid-number>
is the RAID controller number you copied in step 3.1. -
If the drive has not initialized to the system, report it in the ticket.
-
Wait for a message on the ticket that the disk has been replaced.
-
Verify that the drive has initialized to the system:
3.1 Obtain the RAID controller numbers:
storcli64 show all
RAID controller information will appear in the response. Memorize or copy the RAID controller number. For example:
System Overview :
===============
------------------------------------------------------------------------------------
Ctl Model Ports PDs DGs DNOpt VDs VNOpt BBU sPR DS EHS ASOs Hlth
------------------------------------------------------------------------------------
0 AVAGOMegaRAIDSAS9361-8i 8 4 2 0 2 0 Opt On 1&2 Y 3 Opt
------------------------------------------------------------------------------------Here
0
in theCtl
field is the RAID controller number.3.2 Get information about the disks that are connected to the RAID controller:
storcli /c<raid_number> show all
Specify
<raid_number>
is the RAID controller number you copied in step 3.1. -
If the drive has not initialized to the system, report it in the ticket.
-
Disable the display on the RAID controller:
storcli /c<raid_number>/e<enclosure_id>/s<slot_id> stop locate
Specify:
<raid_number>
— number of the RAID controller you copied in step 3.1;<enclosure_id>
— the enclosure ID you copied in step 3.2;<slot_id>
— number of the slot in the enclosure that you copied in step 3.2.
Without RAID controller
Adaptec
MegaRAID
-
Wait for a message on the ticket that the disk has been replaced.
-
Run PowerShell as an administrator.
-
Verify that the drive has initialized to the system:
wmic diskdrive get model,name,serialnumber
-
If the disk is not in the list, reboot the server. If the disk does not initialize in the system after the reboot, report it in the ticket
-
Wait for a message on the ticket that the disk has been replaced.
-
Verify that the drive has initialized to the system:
3.1 Start maxView Storage Manager.
3.2 In the Enterprise View menu, expand the list of disks for the desired RAID controller.
-
If the drive has not initialized to the system, report it in the ticket.
-
Disable the display on the RAID controller. To do this, select a disk and press Stop.
-
Wait for a message on the ticket that the disk has been replaced.
-
Run PowerShell as an administrator.
-
Verify that the drive has initialized to the system:
4.1 Obtain the RAID controller numbers:
storcli64 show all
RAID controller information will appear in the response. Memorize or copy the RAID controller number. For example:
System Overview :
===============
------------------------------------------------------------------------------------
Ctl Model Ports PDs DGs DNOpt VDs VNOpt BBU sPR DS EHS ASOs Hlth
------------------------------------------------------------------------------------
0 AVAGOMegaRAIDSAS9361-8i 8 4 2 0 2 0 Opt On 1&2 Y 3 Opt
------------------------------------------------------------------------------------Here
0
in theCtl
field is the RAID controller number.4.2 Get information about the disks that are connected to the RAID controller:
storcli /c<raid_number> /eall /sall show all
Specify
<raid_number>
is the RAID controller number you copied in step 4.1. -
If the drive has not initialized to the system, report it in the ticket.
-
Disable the display on the RAID controller:
storcli /c<raid_number>/e<enclosure_id>/s<slot_id> stop locate
Specify:
<raid_number>
— number of the RAID controller you copied in step 4.1;<enclosure_id>
— the enclosure ID you copied in step 4.2;<slot_id>
— number of the slot in the enclosure that you copied in step 4.2.
6. Add a disk to a RAID array
If the disk was in a RAID array, add the replaced disk to the array.