Restart all Sisense Services Using PowerShell or Force Restart All Sisense Services
These instructions are for customers using Sisense On-Prem deployments. If you are a Sisense Cloud customer please reach out to Support for help with Services.
Follow the instructions below to restart all Sisense services and IIS:
- Log on to the server with your administrator privileges.
- Locate PowerShell and run it as administrator (right click -> Run as administrator).
- Copy and run the following commands:
Get-Service | where {($_.name -like"*sisense*"
) -or ($_.Name -like
"*elastic*"
)} | Restart-Service
iisreset /noforce
Follow the instructions below to Force Stop all Sisense Services and then Start them again:
- Log on to the server with your administrator privileges.
- Locate PowerShell and run it as administrator (right click -> Run as administrator).
- Copy and run the following commands:
Get-Service | where {($_.name -like"*sisense*"
)} | Stop-Service -Force
Get-Service | where {($_.name -like"*sisense*"
)} | Start-Service
Updated 02-16-2024
intapiuser
Admin
Joined December 15, 2022