How do I restart an MDM server?

Purpose

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

Steps
 

Log in as the root user on the NSP cluster host.


Open a console window.


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 4 to restart an additional MDM server, as required.


Close the console window.

End of steps