I'm currently working on with Windows Azure in order to set up a cluster up and running, following the steps from here. But when i tried to execute the command i got this error:
New-AzureHDInsightCluster : Unable to complete the cluster create operation
left behind state: 'Error'. Message: 'PreClusterCreationValidationFailure'.
I had a look into the this, but i was kinda confused with it. What does the input values mean in it? Is it the ClusterSizeInNodes? and also could this error occur due to the same cluster name being already exist?
Any help would be appreciated.
Sometimes you will see a PreClusterCreationValidationFailure message if you are supplying arguments that are not compatible with eachother, such as requesting a cluster in one datacenter region and pointing to a default storage container in another region.
If that doesn't happen to be the case, then please include more details about the specific arguments you are providing.
Have you checked if your user credentials (-Credential <PSCredential>) follow the "requirements"? Unfortunately, they are not documented very well...
Username: admin
Password: [min. 10 characters] (at least 1 uppercase, 1 lowercase, 1 digit and 1 special character)
Related
I'm trying to create a web app in azure using
azure.WebApps
.Define(name)
.WithExistingWindowsPlan(plan)
.WithExistingResourceGroup(resourceGroupName)
.CreateAsyn()
Since the name must be globally unique, how can I check if the name exist already?
Similar to Erndob's comment there - I'll extend it by saying that catch the error and look into the specifics. If it's failing with a name not unique error - that's your check failing right there. Any other failures should be treated differently.
I need some help regarding creating network interfaces azure terraform. I am getting an error while provisioning them. Please help me if i am doing anything wrong.
Error:
azurerm_network_interface.revproxy-1: network.InterfacesClient#CreateOrUpdate: Failure sending request: StatusCode=400 -- Original Error: Code="IpConfigDeleteNotSupported" Message="IP Configuration dataname-1-configuration cannot be deleted. Deletion and renaming of primary IP Configuration is not supported" Details=[]
* azurerm_network_interface.core-1: 1 error(s) occurred:
It would help if we had additional information in the form of:
The full Terraform script used to deploy the infrastructure (not just the network interface part, since it depends on resources previously created but not present in the script provided in the comments).
The steps leading to this error.
It sounds like there was a multi-step process leading to this error. The error referencing ‘dataname-1-configuration’ but that name not being present in the script leads one to believe that the error is in the multi-step process. We could certainly be wrong, however, and the information above would help in understanding this.
I am trying to deploy a node app into azure, while doing last step of deployment
git push azure master, an error occurred as below.
fatal: unable to access 'https://lalit#wittyparrot.com#node-deploy-to-azure.scm.azurewebsites.net/node-deploy-to-azure.git/': Couldn't resolve host 'wittyparrot.com#node-deploy-to-azure.scm.azurewebsites.net'
Please help to resolove it.
One solution is like #evilSnobu has said. Use the url https://{appname}.scm.azurewebsites.com.
What you have met is caused by your deployment user name, as you use the format https://{username}#{appname}.scm.azurewebsites.net:443/{appname}.git
In your case, you set it as lalit#wittyparrot.com. You may have done this setting in Azure Cloud Shell and it showed no error.
But in fact, the name can only contain letters, numbers, hyphens and underscores. Otherwise your url can't be resolved correctly.
You can see the tip here.
Azure Cloud Shell may miss some necessary pattern check so that invalid user name causes no error to show.
when trying to configure Event Hubs Capture with Datalake Store, I get the following error in the Azure portal.
SubCode=40000. DataLakeFolderPath. + some tracking number guid and correlation guid.
Anyone know what this error means?
I assume it's got something to do with the DataLakeFolderPath, but no clue what SubCode of 40000 means.
After redoing all the steps contained in this article it seems to work.
If I retrace my steps it appears the error is likely due to me not setting the correct permissions at the ADLS root level, or the correct permissions at the specific Folder level.
I don't know which one, yet.
I am trying to to follow the tutorial below
Azure Tutorial
As noted at the bottom there appear to have been changes since this was created
When I get to the part where I create an input for my stream analytics job, I cannot select an event hub even though there is one in my subscription
So I went to provide the information manually and I get an error stating invalid token
Has anyone got any ideas how to resolve this or can point me to a better/more recent tutorial?
I am looking to stream data in real time
Paul
Thanks for the help here I ended up using the secondary key and that worked fine!
Change to use Secondary connection string or use a different shared policy altogether.
You can use the primary of the new shared access policy.
PS : It is a weird error, sometimes removing the last ";" worked.