This section explains the maintenance of common control repository.
Save the common control repository.
Information
About the notation in procedure
Directory name | Explanation |
---|---|
$BAK_DIR | Backup destination directory. |
Stop the ETERNUS SF Manager Web service.
Execute the following shell script to stop the service.
/opt/FJSVesfcm/bin/stop-webservice.sh
Create a backup data.
Create the following backup directories:
mkdir -p $BAK_DIR/Common
Execute the following command to create a backup data with OS Administrator privilege.
If you did not change the port number, specify 15432 for <port number>. If you did change the port number, specify the changed port number for <port number>.
The file name of the created backup data is <file_name>.
/opt/FJSVesfcm/postgres/bin/pg_dump -U esfpostgres -C --attribute-inserts -p <port number> -f $BAK_DIR/Common/<file_name> esfdb
The prompt is displayed, and waiting for input. Input the following strings.
master01!
Start the ETERNUS SF Manager Web service.
Execute the following shell script to start the service.
/opt/FJSVesfcm/bin/start-webservice.sh
Restore the common control repository.
Information
About the notation in procedure
Directory name | Explanation |
---|---|
$BAK_DIR | Backup destination directory. |
Stop the ETERNUS SF Manager Web service.
Execute the following shell script to stop the service.
/opt/FJSVesfcm/bin/stop-webservice.sh
Restore a backup data. The following procedure must be implemented by a user with administrator privileges for the operating system.
Execute the following command.
If you did not change the port number, specify 15432 for <port number>. If you did change the port number, specify the changed port number for <port number>.
/opt/FJSVesfcm/postgres/bin/psql -U esfpostgres -p <port number> postgres
The prompt is displayed, and waiting for input. Input the following strings in order.
master01! drop database esfdb; \q
Execute the following command to restore the backup data.
If you did not change the port number, specify 15432 for <port number>. If you did change the port number, specify the changed port number for <port number>.
The <file_name> is the file name specified when the backup data was created.
/opt/FJSVesfcm/postgres/bin/psql -U esfpostgres -p <port number> -f $BAK_DIR/Common/<file_name> postgres
The prompt is displayed, and waiting for input. Input the following strings.
master01!
Start the ETERNUS SF Manager Web service.
Execute the following shell script to start the service.
/opt/FJSVesfcm/bin/start-webservice.sh
Note
After restoring the shared control repository, it takes approximately 2 minutes before the Web Console becomes available.