Gracefull shutdown/restart nGeniusPULSE: Difference between revisions

From wiki.comcert.com
Jump to navigation Jump to search
No edit summary
No edit summary
Line 18: Line 18:
==== To restart all relevant services without restarting the applicance ====
==== To restart all relevant services without restarting the applicance ====


*24 services need to be stopped and started in the reverse order
*Execute the stop script, followed by the start script  
*Execute the stop script, followed by the start script  
<pre># ./ngp-stop-services.sh
<pre># ./ngp-stop-services.sh
Line 25: Line 26:
==== To restart the applicance ====
==== To restart the applicance ====


*Execute the stop script, followed by "shutdown -r"  
*24 services need to be&nbsp;stopped first
*Execute the stop script, followed by "shutdown -r"&nbsp;
<pre># ./ngp-stop-services.sh
<pre># ./ngp-stop-services.sh
# shutdown -r now</pre>
# shutdown -r now</pre>
Line 31: Line 33:
==== To shutdown&nbsp;the applicance ====
==== To shutdown&nbsp;the applicance ====


*24 services need to be&nbsp;stopped first
*Execute the stop script, followed by "shutdown -h"  
*Execute the stop script, followed by "shutdown -h"  
<pre># ./ngp-stop-services.sh
<pre># ./ngp-stop-services.sh

Revision as of 13:50, 21 July 2018

Introduction

To minimize the risk of data loss, it is recommended that all services are stopped before restarting or shutting down the machine.

 

Solution

nGeniusPULSE (version 2.5 and above)

  • Connect to the host using an SSH client of your choice
  • Login as nGPadmin (for default credentials read default credentials)
  • Change to the folder /opt/ipm/appliance/
# cd /opt/ngp/appliance/

To restart all relevant services without restarting the applicance

  • 24 services need to be stopped and started in the reverse order
  • Execute the stop script, followed by the start script
# ./ngp-stop-services.sh
# ./ngp-start-services.sh

To restart the applicance

  • 24 services need to be stopped first
  • Execute the stop script, followed by "shutdown -r" 
# ./ngp-stop-services.sh
# shutdown -r now

To shutdown the applicance

  • 24 services need to be stopped first
  • Execute the stop script, followed by "shutdown -h"
# ./ngp-stop-services.sh
# shutdown -h now