azureazure-devopsazure-active-directoryazure-service-fabric

Facing access denied while accessing the azure fabric explorer 403


I am deploying azure fabric cluster referring the Microsoft docs on deploying the cluster using service fabric explorer getting "Access to srvfabric.cloudapp.azure.com was denied" You don't have the user right to view the page HTTP error 403


Solution

  • When I deployed the SFC cluster, Even I got the same error code as yours:-

    enter image description here

    Make sure your key vault certificate used to create the SFC cluster is correct with your SFC domain name added as common name CN like below:-

    enter image description here

    Download the above certificate as pfx in your local machine and import it in your cert-manager like below:-

    enter image description here

    Type certmgr.msc. as a run command and open certificate manager and import this certificate from your local machine like below:-

    Click on Personal > certificates > All tasks > import > Import the certificate from your local folder by selecting the path below:-

    enter image description here

    enter image description here

    Click next > next > Password is not required and import the certificate.

    The certificate will be imported like below:-

    enter image description here

    While creating the Service Fabric, I Added the above certificate for authentication like below:-

    enter image description here

    enter image description here

    Certificate added after SFC deployment:-

    enter image description here

    Now, Browse the URL from the Overview tab and if you receive an error related to Your connection is not private > Choose the advance tab and Proceed > If it prompts for a certificate > Select the certificate you imported in the step above > You will be routed to the SFC explorer successfully like below:-

    enter image description here

    enter image description here

    SFC Explorer page loaded successfully:-

    enter image description here