Skip to content

Commit 4c05808

Browse files
committed
adding more common problems and troubleshooting steps
1 parent fbb458c commit 4c05808

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

articles/logic-apps/deploy-single-tenant-logic-apps-private-storage-account.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.suite: integration
66
ms.reviewer: estfan, azla
77
ms.topic: how-to
88
ms.custom: engagement-fy23, devx-track-arm-template
9-
ms.date: 07/04/2024
9+
ms.date: 12/24/2025
1010
# Customer intent: As a developer, I want to deploy Standard logic apps to Azure storage accounts that use private endpoints.
1111
---
1212

@@ -101,9 +101,16 @@ The following errors commonly happen with a private storage account that's behin
101101
| Problem | Error |
102102
|---------|-------|
103103
| 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'."`|
104107
| Can't load workflows in the logic app resource | `"Encountered an error (ServiceUnavailable) from host runtime."` |
105108

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:
107114

108115
- 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.
109116

@@ -137,7 +144,7 @@ As the logic app isn't running when these errors occur, you can't use the Kudu c
137144

138145
`C:\psping {storage-account-host-name}.table.core.windows.net:443`
139146

140-
`C:\psping {storage-account-host-name}.file.core.windows.net:443`
147+
`C:\psping {storage-account-host-name}.file.core.windows.net:445`
141148

142149
1. If the queries resolve from the VM, continue with the following steps:
143150

0 commit comments

Comments
 (0)