Knowledge Base Article

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:
  1. Log on to the server with your administrator privileges. 
  2. Locate PowerShell and run it as administrator (right click -> Run as administrator).
  3. 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:
  1. Log on to the server with your administrator privileges. 
  2. Locate PowerShell and run it as administrator (right click -> Run as administrator).
  3. 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
No CommentsBe the first to comment