Applies to: MegaRAID Storage Manager
Summary:
This article provides an introduction to the MegaRAID Storage Manager.
Step By Step Guide:
Starting the MegaRAID Storage Manager
To start the MegaRAID Storage Manager:
- Double-click the MegaRAID Storage Manager ()icon on your desktop.
The Host View will open.
NOTE: To log in to the local server, enter 127.0.0.1 in the IP Address
field and click Discover Host. The servers will be displayed in the
Remote servers window. - In the Remote servers section, double-click a displayed server.
NOTE: For permission to create and delete a virtual drive, select
Full Access next to Login Mode. This allows only one user to log in to a
managed server at a time. - Enter the required User Name and Password to login.
After a successful login, the MegaRAID Storage Manager main window will open.
Creating a New Virtual Drive
To create a new virtual drive:
- Select the controller then click the Go To tab and select Controller > Create Virtual Drive.
The Choose mode window will open.
NOTE: Do NOT create a virtual drive with the Simple option. Under this
mode, the virtual drive settings will be kept by default. Some parameter
settings cannot be changed after the virtual drive is created. - Select the Advanced radio button then click Next.
The Create Drive Group - Drive Group Settings window will be displayed. - Select the desired RAID level from the dropdown menu.
- Under Select unconfigured drives, select and add the desired unconfigured drives to Drive groups.
- After configuration, click Create Drive Group > Next.
- Specify the parameters for the new virtual drive, then click Create Virtual Drive.
Capacity - Set the desired size of the virtual drive. The maximum size is the default.
Initialization state - Select Fast Initialization from the dropdown menu.
Stripe size - Set the size to 1MB.
Write policy - Select Always Write Back from the dropdown menu.
Disk cache policy - Select Enabled from the dropdown menu.
Keep the default setting for the other parameters. - After configuration, click Create Virtual Drive.
The Write Back Selected window will be displayed. - Click Yes.
- Click Next > Finish.
Deleting a Virtual Drive
To delete a virtual drive:
- Navigate to the Drive Group > Virtual Drive, then right-click the virtual disk you
want to delete. - Select Delete Virtual Drive from the popup window.
If there are several virtual disks in the Drive Group, the virtual disks need to be deleted one by
one. - Select the checkbox next to Confirm, then click Yes.
After deleting all virtual drives of the Drive Group, the Drive Group is deleted.
Creating JBOD with Single Drive RAID0 Group
For Windows
To support four independent drives as JBOD, you must delete the existing RAID5 group and create four single-drive RAID0 groups. In other words, each RAID0 group has only one drive.
To create a single drive RAID0 group:
- Select RAID 0 from the RAID level dropdown menu, and select only ONE drive to add to Drive groups.
- Click Create Drive Group > Next.
- Specify the parameters for the new virtual drive then click Create Virtual Drive.
For Ubuntu
For Ubuntu, use StorCLI commands to delete the existing virtual drive and create new RAID0 virtual drives.
Navigate to the folder /usr/local/MegaRAID Storage Manager/StorCLI/
To delete the existing virtual drive:
- Issue the command sudo ./storcli64 /c0/vall show to see the current virtual drive configuration.
Example:
In the example, there is a RAID5 DG/VD 0/0 on controller 0. Issue the following command to delete the virtual drive sudo ./storcli64 /c0/v0 delete force - Issue the command sudo ./storcli64 /c0/vall show again to check whether DG/VD 0/0 is there.
To add a new virtual drive:
- Check the drive's information with command sudo ./storcli64 /c0/eall/sall show
Example:
In the example, Controller1 has 4 drives: 252:0, 252:1, 252:2, 252:3
To create a RAID0 group with only ONE drive, issue the following commands on the Ubuntu system:
sudo ./storCLI64.exe /c0 add vd type=RAID0 size=all name=vd0 drives=252:0 awb ra direct pdcache=on strip=1024
sudo ./storCLI64.exe /c0 add vd type=RAID0 size=all name=vd1 drives=252:1 awb ra direct pdcache=on strip=1024
sudo ./storCLI64.exe /c0 add vd type=RAID0 size=all name=vd2 drives=252:2 awb ra direct pdcache=on strip=1024
sudo ./storCLI64.exe /c0 add vd type=RAID0 size=all name=vd3 drives=252:3 awb ra direct pdcache=on strip=1024 - Issue command sudo ./storcli64 /c0/vall show to check whether there are four RAID0 DG/VDs.