How to Stop and Start the Bold BI Application on Different Environment
This section explains how to stop and start the Bold BI application in different environments.
- Window
- Linux
- Docker
- Kubernetes
- Azure App service
Window
-
Open the IIS Manager and use the site’s dropdown to find the Bold BI Embedded app.
-
In Manage Websites in the IIS Manager, you can stop or start the application.
Linux
- Use the following command to stop the Bold BI application.
sudo systemctl stop bold-*
- Use the following command to start the Bold BI application.
sudo systemctl start bold-*
Docker
- Use the following command to stop the Bold BI application docker container.
Example:docker stop <container-name/container ID>
docker stop boldbi
- Use the following command to start the Bold BI application docker container.
Example:docker start <container name/container ID>
docker start boldbi
Kubernetes
-
Use the following command to set the replicas as
zero
.kubectl scale deploy bi-api-deployment,bi-dataservice-deployment,bi-jobs-deployment,bi-web-deployment,id-api-deployment,id-ums-deployment,id-web-deployment -n namespace --replicas=0
Example :
kubectl scale deploy bi-api-deployment,bi-dataservice-deployment,bi-jobs-deployment,bi-web-deployment,id-api-deployment,id-ums-deployment,id-web-deployment -n bold-services --replicas=0
-
Use the following command to set the replicas as
one
.kubectl scale deploy bi-api-deployment,bi-dataservice-deployment,bi-jobs-deployment,bi-web-deployment,id-api-deployment,id-ums-deployment,id-web-deployment -n namespace --replicas=1
Example :
kubectl scale deploy bi-api-deployment,bi-dataservice-deployment,bi-jobs-deployment,bi-web-deployment,id-api-deployment,id-ums-deployment,id-web-deployment -n bold-services --replicas=1
Azure App Service
-
Open the web app for the Bold BI application in the Azure portal.
-
You can stop the web app using the Stop option.
-
You can stop the web app using the Start option.