Consultor Eletrônico



Kbase P19023: What are the correct steps to stop a database and AppServer via the AdminServer for offline backup ?
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   06/05/2008
Status: Unverified

GOAL:

What are the correct steps to stop a database and AppServer via the AdminServer for offline backup ?

GOAL:

How to restart the AppServer through the AdminServer from a script to perform an offline backup ?

GOAL:

How to restart the database through the AdminServer from a script to perform an offline backup ?

FACT(s) (Environment):

Progress 9.x
OpenEdge 10.x
All Supported Operating Systems

FIX:

The correct steps to stop and restart the database would be as follows:

1) asbman -name <AS> -stop
This would stop the AppServer.

2) dbman -stop -db <your dbname>
This will stop the database.

3) Do your offline backup.

4) dbman -start -db <your dbname>
This will start the database.

5) asbman -name <AS> -start
This will start the AppServer.