Question

How to restart PostgreSQL database service in OSA safely?

To restart PostgreSQL in Operations Automation:

  1. Stop OA services in the below order:

    # service pem stop
    # service pau stop
    
  2. Restart PostgreSQL service:

    # service postgresql-9.1 restart
    
  3. Start OA services in the below order:

    # service pau start
    # service pem start
    

Check if all services are up and running and CP is available.

To restart PostgreSQL in Business Automation:

  1. Stop BA service on BA Application Node:

    # service pba stop
    
  2. Restart PostreSQL service on BA Database node:

    # service postgresql-9.1 restart
    
  3. Start BA service:

    # service pba start
    

Check that all services are running, check that CP and Online Store are available.

Internal content