Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error creating deployment credentials for azure

Tags:

azure

I have a website successfully deployed to Azure and it's been working fine. Recently the website stops responding seemingly out of nowhere with "server encountered an internal error". It comes back on its own.

To troubleshoot this, I believe I need to FTP the logs from the website to review them.

To get the logs, I believe I need to create Deployment Credentials for the website (I normally deploy from within Visual Studio using a publishing profile.

When I go to create the deployment credentials, I repeatedly receive the error "Failed to Set Credentials with error: 'Cannot modify this user as there is another operation in progress.'"

I am not aware of any other operation in progress. Is there a way to look at what other operation is in progress? Does this even sound like a legitimate issue? Is this maybe a misleading error message where the issue is actually something else?

Thanks in advance

like image 302
user2800795 Avatar asked Sep 20 '13 21:09

user2800795


People also ask

How do I change deployment credentials in Azure?

From the left menu of your app, select > Deployment center > FTPS credentials or Local Git/FTPS credentials. Scroll down to User scope, configure the Username and Password, and then select Save.

What are deployment errors?

Any error that occurs during deployment of an API Proxy is called a Deployment error. Deployment of API proxies might fail due to various reasons such as network connectivity issues between Edge servers, issues with the Cassandra datastore, ZooKeeper exceptions, and errors in the API proxy bundle.

How do I add credentials in Azure?

Create a new credential asset with the Azure portalFrom your Automation account, on the left-hand pane select Credentials under Shared Resources. On the Credentials page, select Add a credential. In the New Credential pane, enter an appropriate credential name following your naming standards.


1 Answers

I'm able to access Logs through FTP like this:

  1. Set your username and password in Deployment credentials section FTP username and password

  2. Switch to Properties section to see FTP connection details FTP connection details

  3. In your preferred FTP client create connection:

    • Server name: FTP_HOST_NAME:21/LogFiles
    • User name: FTP/DEPLOYMENT USER
    • Password: Password set in Deployment credentials
    • Use passive mode
    • No SSL explicit
like image 131
krs Avatar answered Oct 14 '22 22:10

krs