background app can't be shutdown automaticlly
AnsweredEven I don’t use Sisense software, the background apps( more than 10) of Sisense are still running, even I restart the system, all of them are still running.
Could you please tell me a way to shut down them automatically? these apps affect other software running.
APPS: Node.js( more than three); Jave Platform SE binary ( more than six); elasticube.service; erl.ext; MongoDB database server; sisense.oxygen etc.
-
Hi Hubert,
There are two ways I can think of to disable Sisense when not using Sisense (keep in mind that if you disable Sisense cubes will not build and the site will not be accessible).
Option 1: Run a powershell script to stop all Sisense services
- Follow this guide: Restart All Sisense Services Using PowerShell Or Force Restart All Sisense Services but instead of using Restart-Service, use Stop-Service
-
Get-Service | where {($_.name -like
"*sisense*"
) -or ($_.Name -like
"*elastic*"
)} | Stop-Service
Option 2: Set all Sisense services to manual start up so they will not start up on computer boot
- Open the services program
- Right click on each of the Sisense services
- In the general tab, change the startup type to "Manual", click Stop then click OK
- When you want to use Sisense, start each of the Sisense services (either view powershell script or manually through the Services program)
Hope that helps,
Katie Garrison | Technical Solutions Consultant
Please sign in to leave a comment.
Comments
1 comment