This section explain how to reset the application database of Bold Reports server application through the command line interface.
-
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/
-
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"
-
Once, the database has been updated successfully, then restart the application by using below command
docker restart <container ID or container name>