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