Skip to content

Commit f30748b

Browse files
authored
Add macOS logs troubleshooting (#136)
1 parent e97f51c commit f30748b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

docs/infrastructure-macos.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -325,3 +325,14 @@ sudo /Users/alibuild/restart-services.sh
325325
### Macs continuously running out of memory
326326

327327
Make sure the Crash Reporter is disabled, as it can cause jobs like `o2-framework-crashing-workflow` to hang indefinitely.
328+
329+
### Nomad cannot stream logs (Path escapes the alloc directory)
330+
331+
Nomad has issues following symlinks in the data_dir, you can solve it by replacing it for the real path.
332+
333+
e.g in `nomad.hcl`:
334+
335+
```diff
336+
- data_dir = "/opt/build/nomad"
337+
+ data_dir = "/Volumes/build/nomad"
338+
```

0 commit comments

Comments
 (0)