Hello Team,
First, I really want to thank you guys to bring this kind of such a great learning opportunity to us.
I participated in your ongoing “Azure Ignite challenge 2021” and I signed up for 30 Days of free Azure portal to perform exercise as but unfortunately, I found below error while practicing on Azure Cloudshell and it ate up my 8 days to just find out the error.
I am writing this post to consider the below error found on Microsoft learn website into your notice and take necessary steps, so others will not bother and complete the Ignite challenge on time.
First, I though it was an error with Azure Cloudshell error, so I searched over internet and performed many steps related “Read Only File System”, restarted cloudshell multiple times deleted and re-created resource group that contains cloudshell but found no solution.
Finally, after a week of research I found a below solution.
- On a site there was no mention that the command should run under Bash shell not PowerShell
- Command seems wrong when I run command error occurs
Learn website link:
Exercise - Create web sites - Learn | Microsoft Learn
Mentioned Command:
RG=<resource group name>
az group create --name $RG --location <location>
Right Command
RG=<resource group name>
az group create --location eastus --resource-group <resource group name>
after that we can call the variable by $rg not directly via mentioned command.
Thank You…
Harshul Chauhan