Unable to open Synapse Studio after creating the workspace using AZ CLI

Oscar Garcia @ozkary 1 Reputation point
2024-08-28T20:30:55.2066667+00:00

I created a synapse workspace using the Azure CLI. I am able to open the workspace settings. When I click on Synapse Studio, the studio only flashes the loading message. I have tried opening studio by using the link from the workspace. I also tried just visiting https://web.azuresynapse.net/ and selecting the subscription and workspace. I waited a day to try again, with the same result.

My options are to delete and recreate it. The goal is to use the CLI to automate the process without using the admin site.

I used Chrome, Edge in regular and private modes.

enter image description here

Azure Synapse Analytics
Azure Synapse Analytics
An Azure analytics service that brings together data integration, enterprise data warehousing, and big data analytics. Previously known as Azure SQL Data Warehouse.
4,859 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. PRADEEPCHEEKATLA-MSFT 88,716 Reputation points Microsoft Employee
    2024-08-29T03:45:06.1033333+00:00

    @Oscar Garcia @ozkary - Thanks for the question and using MS Q&A platform.

    It seems like you are having trouble opening Synapse Studio after creating the workspace using Azure CLI. There could be several reasons why you are unable to open Synapse Studio. Let's try to troubleshoot the issue together.

    To resolve this issue, you may follow the below steps:

    Have you followed the necessary steps metioned in the official documentation: Quickstart: Create an Azure Synapse Analytics workspace

    Did you created a firewall rule to allow access to your Azure Synapse Analytics workspace from your machine?

    If no, please do create a firewall rule to allow access to your Azure Synapse Analytics workspace from your machine: az synapse workspace firewall-rule create

    ClientIP=$(curl -sb -H "Accept: application/json" "$WorkspaceDev" | jq -r '.message')
    ClientIP=${ClientIP##'Client Ip address : '}
    echo "Creating a firewall rule to enable access for IP address: $ClientIP"
    
    az synapse workspace firewall-rule create --end-ip-address $ClientIP --start-ip-address $ClientIP --name "Allow Client IP" --resource-group $SynapseResourceGroup --workspace-name $SynapseWorkspaceName
    

    Open the Azure Synapse Analytics workspace web URL address stored in the environment variable WorkspaceWeb to access your workspace:

    echo "Open your Azure Synapse Workspace Web URL in the browser: $WorkspaceWeb"
    

    After it's deployed using Azure CLI, more permissions are required:

    For more details, refer to Quickstart: Create an Azure Synapse Analytics workspace

    In case, if you are unable to find the reason for the unable to open Synapse Studio, please do share more details on how exactly you had created synapse workspace using AZ CLI which will helps us to assist further.

    Hope this helps. Do let us know if you any further queries.


    If this answers your query, do click Accept Answer and Yes for was this answer helpful. And, if you have any further query do let us know.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.