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
To fix this issue, you can try to free up some disk space by deleting unnecessary files or moving them to another location.
257
+
Alternatively, you can specify a different temporary directory with sufficient space by setting proper environmental variable before running the installer.
258
+
259
+
**On Linux/macOS**, set the `TMPDIR` environment variable:
**On Windows**, you can set the `TEMP` or `TMP` environment variable:
266
+
```powershell
267
+
Set TMP="C:\path\to\existing\directory\with\sufficient\space"
268
+
```
269
+
270
+
Retry installation after making these adjustments.
271
+
206
272
## Further reading
207
273
208
274
For more detailed technical information about the FlowFuse Device Agent, like list of supported parameters or how to contribute, please refer to the [documentation](https://github.com/FlowFuse/device-agent/blob/main/installer/README.md).
Copy file name to clipboardExpand all lines: docs/device-agent/install/overview.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,24 @@ Most users should use the Device Agent Installer. Power users can choose Manual
35
35
36
36
Note: The Device Agent downloads the required Node-RED version and any nodes specified by the assigned snapshot. Ensure firewall/proxy permits access to the npm registry or see [Running with no access to npmjs.org](../running.md#running-with-no-access-to-npmjs.org).
37
37
38
+
### Networking requirements
39
+
40
+
If you're working behind a firewall, and need to configure it to allow the Device Agent to connect to FlowFuse and the npm registry, see the following:
41
+
42
+
Allow outbound TCP 443 to:
43
+
44
+
- app.flowfuse.com
45
+
- mqtt.flowfuse.cloud
46
+
- registry.flowfuse.cloud
47
+
- registry.flowfuse.com
48
+
49
+
Ensure access to npm registry to download Node-RED and nodes:
50
+
51
+
-https://registry.npmjs.com
52
+
53
+
For offline environments, see [Running with no access to npmjs.org](../running.md#running-with-no-access-to-npmjs.org).
0 commit comments