Raja
Raja

Reputation: 533

Azure Synapse Studio Not Loading - Failure to load one or more resources due to server error, error code 500

Azure Synapse Studio Not Loading - Failure to load one or more resources due to server error, error code 500

Synapse is not loading anything giving error code 500. All our development work blocked because of this! No proper documentation also available!

Can some one please help unblock us ?

Sharing below screenshot for reference:

enter image description here

Upvotes: 0

Views: 3353

Answers (2)

vishal anand
vishal anand

Reputation: 1

Azure Synapse has two layer of security for managing acess control

  1. At the resource level which we can configure at portal end
  2. Inside synapse studio in manage tab there is security section where you need to add your account as Synapse Administrator role if you need highest level of access on workspace. If you are not able to open workspace you can do it via powershell New-AzSynapseRoleAssignment -RoleDefinitionName "Synapse Administrator" -ObjectId "" with other required parameter.

Note: If your synase has managed virtual network enabled then you need to add your public ip first to networking section in resource section and then proceed with pwsh cmdlets

Upvotes: 0

Chris
Chris

Reputation: 11

There are two sets of RBAC permissions, one on Synapse applied in the Azure portal and one set within Synapse studio. I’ve also seen similar errors if your client IP address is blocked in the Networking section.

Upvotes: 1

Related Questions