Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 1.11 KB

how-to-reset-the-database-in-docker.md

File metadata and controls

31 lines (20 loc) · 1.11 KB

How to reset the database for Bold Reports application in docker environment.

This section explain how to reset the application database of Bold Reports server application through the command line interface.

Single container deployment

  1. Open the command prompt and Bash the container then change the directory to the admin utility location.

    docker exec -it <Container ID or Container name>
    cd /application/utilities/adminutils/

    path-command

  2. After changing the directory, run the following command to reset the database.

    dotnet Syncfusion.Server.Commands.Utility.dll dbconfig -servername "localhost" -databasename "BoldReportsMasterDatabase" -u "Admin" -p "Admin@12345" -iswindowsauthentication false -sslenabled false -port "5432" -additionalparameters "Pooling=True"   

    database-reset

  3. Once, the database has been updated successfully, then restart the application by using below command

    docker restart <container ID or container name>