ONTAP 9 Manuals ( CA08871-402 )

Download and install the ONTAP software image

Before you revert your current ONTAP software, you must download the target software version from the Support site and then install it.

Download the ONTAP software image

Software images are specific to series models. You must obtain the correct image for your cluster. Software images, firmware version information, and the latest firmware for your seriesmodel are available on the Support Site. Software images include the latest version of system firmware that was available when a given version of ONTAP was released.

Steps
  1. Locate the target ONTAP software.

  2. Copy the software image (for example, 97_q_image.tgz) from the MySupportPoral site.

    You can copy the image to the directory on the HTTP server or FTP server from which the image will be served or to a local folder.

Install the ONTAP software image

After downloading the target ONTAP software image from the support site, install it on the cluster nodes.

Steps
  1. Set the privilege level to advanced:

    set -privilege advanced

    The advanced prompt (*>) appears.

  2. Enter y to continue when prompted .

  3. Install the software image:

    • For standard configurations or a two-node MetroCluster configuration enter the following command:

      system node image update -node * -package <http://example.com/downloads/image.tgz> -replace-package true -replace {image1|image2} -background true -setdefault true

      This command downloads and installs the software image on all of the nodes simultaneously. To download and install the image on each node one at a time, do not specify the -background parameter. This command also uses an extended query to change the target software image, which is installed as the alternate image, to be the default image for the node.

    • For a four-node or eight-node MetroCluster configuration, enter the following command on both clusters:

      system node image update -node * -package <http://example.com/downloads/image.tgz> -replace-package true -replace {image1|image2} -background true -setdefault false

      This command downloads and installs the software image on all of the nodes simultaneously. To download and install the image on each node one at a time, do not specify the -background parameter. This command also uses an extended query to change the target software image, which is installed as the alternate image on each node.

  4. Enter y to continue when prompted.

  5. Verify that the software image is downloaded and installed on each node:

    system node image show-update-progress -node *

    This command displays the current status of the software image download and installation. You should continue to run this command until all nodes report a Run Status of "Exited", and an Exit Status of "Success".

    The system node image update command can fail and display error or warning messages. After resolving any errors or warnings, you can run the command again.

    This example shows a two-node cluster in which the software image is downloaded and installed successfully on both nodes:

    cluster1::*> system node image show-update-progress -node *
    There is no update/install in progress
    Status of most recent operation:
            Run Status:     Exited
            Exit Status:    Success
            Phase:          Run Script
            Exit Message:   After a clean shutdown, image2 will be set as the default boot image on node0.
    There is no update/install in progress
    Status of most recent operation:
            Run Status:     Exited
            Exit Status:    Success
            Phase:          Run Script
            Exit Message:   After a clean shutdown, image2 will be set as the default boot image on node1.
    2 entries were acted on.
Related information
Top of Page