How do I restart an MDM server?

Purpose

Perform the following steps to restart an MDM server in an NSP cluster.

Steps
 

Open a terminal session to the NSP cluster VM and log in as the root or NSP admin user.


Enter the following to display the MDM server instances:

kubectl get pods -A | grep mdm-server ↵

The MDM server instances and pod numbers are listed.


Enter the following:

kubectl delete pod mdm-server-n -n $(kubectl get pods -A | awk '/mdm-server/ {print $1;exit}') ↵

where n is the MDM server pod number

The MDM server restarts.


Repeat Step 3 to restart an additional MDM server, as required.

End of steps