<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Automation tool to Configure RAID on an HPE ProLiant G10 ? iLO/cli in ProLiant Servers (ML,DL,SL)</title>
    <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/automation-tool-to-configure-raid-on-an-hpe-proliant-g10-ilo-cli/m-p/7201103#M184232</link>
    <description>&lt;P dir="auto" style="margin: 0;"&gt;&lt;BR /&gt;Hi,&lt;/P&gt;
&lt;P dir="auto" style="margin: 0;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P dir="auto" style="margin: 0;"&gt;Refer the document below to create the logical drive with ilo rest. Make sure to update the smart array controller firmware and use the latest version of ilorest tool&lt;/P&gt;
&lt;P dir="auto" style="margin: 0;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P dir="auto" style="margin: 0;"&gt;&lt;A href="https://hewlettpackard.github.io/python-redfish-utility/#createvolume-command-previously-createlogicaldrive-command" target="_blank"&gt;https://hewlettpackard.github.io/python-redfish-utility/#createvolume-command-previously-createlogicaldrive-command&lt;/A&gt;&lt;/P&gt;
&lt;P dir="auto" style="margin: 0;"&gt;&lt;BR /&gt;RESTful Interface Tool&lt;BR /&gt;&lt;A href="https://support.hpe.com/hpesc/public/km/product/1008862654/Product?sp4ts.oid=1008862654#t=DriversandSoftware" target="_blank"&gt;https://support.hpe.com/hpesc/public/km/product/1008862654/Product?sp4ts.oid=1008862654#t=DriversandSoftware&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 20 Nov 2023 13:15:01 GMT</pubDate>
    <dc:creator>Sebasbin</dc:creator>
    <dc:date>2023-11-20T13:15:01Z</dc:date>
    <item>
      <title>Automation tool to Configure RAID on an HPE ProLiant G10 ? iLO/cli</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/automation-tool-to-configure-raid-on-an-hpe-proliant-g10-ilo-cli/m-p/7200822#M184174</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Simple scenario: server with Total Drives 6 and raid 6 is needed.&amp;nbsp; Do we have free simple way to configure RAID without clicking all the buttons throught bios ?&lt;/P&gt;&lt;P&gt;Dell have simple solution, you can upload raid config file via idrac. How about HPE?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2023 03:39:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/automation-tool-to-configure-raid-on-an-hpe-proliant-g10-ilo-cli/m-p/7200822#M184174</guid>
      <dc:creator>modestaso</dc:creator>
      <dc:date>2023-11-17T03:39:01Z</dc:date>
    </item>
    <item>
      <title>Re: Automation tool to Configure RAID on an HPE ProLiant G10 ? iLO/cli</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/automation-tool-to-configure-raid-on-an-hpe-proliant-g10-ilo-cli/m-p/7200928#M184191</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;You may create an array either using the options in the server's BIOS or by using the HPE Smart Storage Administrator in the Boot menu (pressing key F10 during POST). It cannot be confiigured directly from the iLO or by uploading a config at iLO.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Thu, 16 Nov 2023 17:24:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/automation-tool-to-configure-raid-on-an-hpe-proliant-g10-ilo-cli/m-p/7200928#M184191</guid>
      <dc:creator>TVVJ</dc:creator>
      <dc:date>2023-11-16T17:24:25Z</dc:date>
    </item>
    <item>
      <title>Re: Automation tool to Configure RAID on an HPE ProLiant G10 ? iLO/cli</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/automation-tool-to-configure-raid-on-an-hpe-proliant-g10-ilo-cli/m-p/7200963#M184197</link>
      <description>&lt;P&gt;Sharing bash script. Seems with ilorest is posible to change some bios settings like workloadprofile and set desired ilo usrname and pass. It reads credentials file iloipaddress,iloadministratorpassword from file. Can be usefult preparing large batch of servers.&lt;/P&gt;&lt;P&gt;Sad that not possbile to export storage configuration &lt;LI-EMOJI id="lia_confused-face" title=":confused_face:"&gt;&lt;/LI-EMOJI&gt; ilorest serverclone save --auto -f&amp;nbsp;HPEconfig.json&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;#!/bin/bash

input_file='HPEcredentials.csv'

# Check if the input file exists
if [ ! -f "$input_file" ]; then
    echo "Error: Input file '$input_file' not found."
    exit 1
fi

# Read IP addresses and passwords from the CSV file
while IFS=, read -r ip_address password; do
    # Print IP address
    echo "Processing server: $ip_address"

    # Execute ilorest login command
    /Applications/ilorest login "$ip_address" -u USERNAME -p "$password"

    # Execute ilorest serverclone command
    /Applications/ilorest serverclone load --auto  -f "HPEconfig.json"

done &amp;lt; "$input_file"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2023 07:40:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/automation-tool-to-configure-raid-on-an-hpe-proliant-g10-ilo-cli/m-p/7200963#M184197</guid>
      <dc:creator>modestaso</dc:creator>
      <dc:date>2023-11-17T07:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: Automation tool to Configure RAID on an HPE ProLiant G10 ? iLO/cli</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/automation-tool-to-configure-raid-on-an-hpe-proliant-g10-ilo-cli/m-p/7201011#M184206</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The ilorest tool "serverclone" option is only designed to capture BIOS and iLO configuration information. The array can be configured using redfish as well, then pushed out to multiple servers. Please see the user guide with more information regarding this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://servermanagementportal.ext.hpe.com/docs/redfishclients/ilorest-userguide/smartarraycommands/#description-2" target="_blank"&gt;https://servermanagementportal.ext.hpe.com/docs/redfishclients/ilorest-userguide/smartarraycommands/#description-2&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This can also be done via RAW redfish commands, but this would likely vary somewhat depending on what controller is in use in the servers.&amp;nbsp; Gen11 servers have stricter adherence to the redfish specification, so the commands on the newer servers should be consistent across all of the controllers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2023 19:21:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/automation-tool-to-configure-raid-on-an-hpe-proliant-g10-ilo-cli/m-p/7201011#M184206</guid>
      <dc:creator>thutchings</dc:creator>
      <dc:date>2023-11-17T19:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: Automation tool to Configure RAID on an HPE ProLiant G10 ? iLO/cli</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/automation-tool-to-configure-raid-on-an-hpe-proliant-g10-ilo-cli/m-p/7201021#M184209</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Any ideas what i missed ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;iLOrest &amp;gt; createvolume quickdrive RAID6 6 SSD NVMe --locationtype=Internal --minimumsize=-1 --controller="Slot 12"
ERROR   :&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Our servers specs:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;ProLiant DL325 Gen10 Plus v2
ilo5
Slot=12	 Enabled	HPE MR416i-a Gen10+	0	Drives 6
Media type NVMe SSD&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Create a volume with a minimal number of arguments (utilizes default values on the controller). This option is only for iLO5 or Gen10
        example: createvolume quickdrive &amp;lt;raid-level&amp;gt; &amp;lt;num-drives&amp;gt; &amp;lt;media-type&amp;gt; &amp;lt;interface-type&amp;gt; --locationtype=Internal  --minimumsize=0 --controller=1

positional arguments:
  Raid_Level            Specify the RAID level for the volume to be created.
  Drives                For quick drive creation, specify number of disks.
  Drive_Media_Type      Specify the drive media type of the physical disk(s) (i.e. HDD or SSD)
  Drive_Interface_Type  Specify the interface type of the physical disk(s) (i.e. SATA or SAS or NVMe)

--controller CONTROLLER
                        Use this flag to select the corresponding controller using either the slot number or index.
                        example: --controller=Slot 0 OR --controller=1

options:
  --locationtype LOCATIONTYPE
                        Optionally specify the location of the physical disks(s) (i.e. Internal or External)
  --minimumsize MINIMUMSIZE
                        Optionally include to set the minimum size of the drive in GiB. (usable in quick creation only,
                        use -1 for max size)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 18 Nov 2023 09:35:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/automation-tool-to-configure-raid-on-an-hpe-proliant-g10-ilo-cli/m-p/7201021#M184209</guid>
      <dc:creator>modestaso</dc:creator>
      <dc:date>2023-11-18T09:35:46Z</dc:date>
    </item>
    <item>
      <title>Re: Automation tool to Configure RAID on an HPE ProLiant G10 ? iLO/cli</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/automation-tool-to-configure-raid-on-an-hpe-proliant-g10-ilo-cli/m-p/7201095#M184230</link>
      <description>&lt;P&gt;I would like to create logical drive with RAID6, is it possible to do with ilorest createvolume ?&lt;/P&gt;</description>
      <pubDate>Mon, 20 Nov 2023 12:32:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/automation-tool-to-configure-raid-on-an-hpe-proliant-g10-ilo-cli/m-p/7201095#M184230</guid>
      <dc:creator>modestaso</dc:creator>
      <dc:date>2023-11-20T12:32:18Z</dc:date>
    </item>
    <item>
      <title>Re: Automation tool to Configure RAID on an HPE ProLiant G10 ? iLO/cli</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/automation-tool-to-configure-raid-on-an-hpe-proliant-g10-ilo-cli/m-p/7201103#M184232</link>
      <description>&lt;P dir="auto" style="margin: 0;"&gt;&lt;BR /&gt;Hi,&lt;/P&gt;
&lt;P dir="auto" style="margin: 0;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P dir="auto" style="margin: 0;"&gt;Refer the document below to create the logical drive with ilo rest. Make sure to update the smart array controller firmware and use the latest version of ilorest tool&lt;/P&gt;
&lt;P dir="auto" style="margin: 0;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P dir="auto" style="margin: 0;"&gt;&lt;A href="https://hewlettpackard.github.io/python-redfish-utility/#createvolume-command-previously-createlogicaldrive-command" target="_blank"&gt;https://hewlettpackard.github.io/python-redfish-utility/#createvolume-command-previously-createlogicaldrive-command&lt;/A&gt;&lt;/P&gt;
&lt;P dir="auto" style="margin: 0;"&gt;&lt;BR /&gt;RESTful Interface Tool&lt;BR /&gt;&lt;A href="https://support.hpe.com/hpesc/public/km/product/1008862654/Product?sp4ts.oid=1008862654#t=DriversandSoftware" target="_blank"&gt;https://support.hpe.com/hpesc/public/km/product/1008862654/Product?sp4ts.oid=1008862654#t=DriversandSoftware&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Nov 2023 13:15:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/automation-tool-to-configure-raid-on-an-hpe-proliant-g10-ilo-cli/m-p/7201103#M184232</guid>
      <dc:creator>Sebasbin</dc:creator>
      <dc:date>2023-11-20T13:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: Automation tool to Configure RAID on an HPE ProLiant G10 ? iLO/cli</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/automation-tool-to-configure-raid-on-an-hpe-proliant-g10-ilo-cli/m-p/7201883#M184355</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.hpe.com/t5/user/viewprofilepage/user-id/2223121"&gt;@modestaso&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Let us know if you were able to resolve the issue.&lt;/P&gt;
&lt;P&gt;If you have no further query and you are satisfied with the answer then kindly mark the topic as Solved so that it is helpful for all community members.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 08:26:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/automation-tool-to-configure-raid-on-an-hpe-proliant-g10-ilo-cli/m-p/7201883#M184355</guid>
      <dc:creator>Sunitha_Mod</dc:creator>
      <dc:date>2023-11-30T08:26:02Z</dc:date>
    </item>
  </channel>
</rss>

