nut

Network UPS Tools (NUT) configuration files and scripts to shutdown NetApp ONTAP

View on GitHub

Network UPS Tools (NUT) configuration files and scripts to shutdown NetApp ONTAP

The idea from this is to provide a graceful shutdown to NetApp ONTAP. What this setup will do:

Pre-requisites

A Linux server with the following tools:

Configuration

  1. Clone this repository somewhere or in /etc/nut

     git clone https://github.com/adlytaibi/nut
    
  2. Once the files are in /etc/nut, run sshkeys helper script as root to create ssh keys for nut user if keys don’t already exist.

    # chown -R root:nut /etc/nut/
    # cd /etc/nut/
    # scripts/sshkeys 
    File "/etc/nut/scripts/ontap" is empty. Please add cluster IPs/hostnames one per line.
    
  1. Add one or more NetApp ONTAP clusters to /etc/nut/scripts/ontap one per line

    # echo cluster1 >> /etc/nut/scripts/ontap
    
  2. Run sshkeys helper script one more time to create a NUT user with ssh login and publickeys. The sshkeys helper script will use admin to login. If you use a different admin account to login to the cluster, edit the useradmin value in the script. Adding subsequent clusters to /etc/nut/scripts/ontap and running the sshkeys helper script will only add the ssh keys to the newly added cluster.

    useradmin="admin"
    
  3. Make sure upsmon.conf is using the proper driver for your UPS system. For example: uncomment the commented block for using a USB attached APC and comment out the two block of the dummy-ups as shown below.

    #[ups]
    #  driver = usbhid-ups
    #  port = auto
    #  vendorid = 051d
       
    [ups]
      driver = dummy-ups
      port = dummy.dev
    [dummy]
      driver = dummy-ups
      port = ups@localhost
    
  4. Restart nut-server and nut-client for the new configuration to take effect.

    # systemctl restart nut-server nut-client
    

Troubleshooting

The dummy-ups driver provided in this configuration works. So, before switching to use a connectivity to a real UPS in step 5. Use the dummy-ups to test functionality of the shutdown plan on a test cluster or ONTAP simulator. While tailing /var/log/syslog or similar, you can watch the timer trigger and halt ONTAP by sending events to dummy-ups.

License

GPL

Author Information