You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Customer intent: As a developer, I want to deploy Standard logic apps to Azure storage accounts that use private endpoints.
11
11
---
12
12
@@ -101,9 +101,16 @@ The following errors commonly happen with a private storage account that's behin
101
101
| Problem | Error |
102
102
|---------|-------|
103
103
| Access to the `host.json` file is denied |`"System.Private.CoreLib: Access to the path 'C:\\home\\site\\wwwroot\\host.json' is denied."`|
104
+
| Unable to connect to file share |`"System.Private.CoreLib: The network path was not found: 'C:\home\data\Functions\secrets\Sentinels'."`|
105
+
| Unable to authenticate to file share |`"System.Private.CoreLib: The user name or password is incorrect: 'C:\home\data\Functions\secrets\Sentinels'."`|
106
+
| Error building configuration in an external startup class |`"System.Private.CoreLib: Could not find a part of the path 'C:\home\site\wwwroot'."`|
104
107
| Can't load workflows in the logic app resource |`"Encountered an error (ServiceUnavailable) from host runtime."`|
105
108
106
-
As the logic app isn't running when these errors occur, you can't use the Kudu console debugging service on the Azure platform to troubleshoot these errors. However, you can use the following methods instead:
109
+
First, check out the environment variables WEBSITE_CONTENTAZUREFILECONNECTIONSTRING and WEBSITE_CONTENTSHARE. Make sure they point to the correct storage account and the correct file share. Make sure there is no typo, and storage account and file share were not accidently deleted.
110
+
111
+
Second, open the **Diagnose and solve problems** blade of the logic app. You can find and run these two detectors: **Logic App Down or Reporting Errors** and **Network Troubleshooter**. They will provide insights and suggest actions to fix the problem.
112
+
113
+
Finally, you can perform some troubleshooting actions in attempt to find the cause. As the logic app isn't running when these errors occur, you can't use the Kudu console debugging service on the Azure platform to troubleshoot these errors. However, you can use the following methods instead:
107
114
108
115
- Create an Azure virtual machine (VM) inside a different subnet within the same virtual network that's integrated with your logic app. Try to connect from the VM to the storage account.
109
116
@@ -137,7 +144,7 @@ As the logic app isn't running when these errors occur, you can't use the Kudu c
0 commit comments