6eb25d6b25
Build All Platforms / test-linux-unit (push) Failing after 40s
Build All Platforms / build-linux-qt (push) Failing after 40s
Build All Platforms / build-linux-daemon (push) Failing after 40s
Build All Platforms / build-windows-qt (push) Has been cancelled
Build All Platforms / build-windows-daemon (push) Has been cancelled
Build All Platforms / build-macos (push) Has been cancelled
Build All Platforms / release (push) Has been cancelled
Build All Platforms / Trigger TRI-PI ARM64 Build (push) Has been cancelled
New RPC commands: - addnode: add/remove/onetry .onion peers at runtime - disconnectnode: immediately drop a peer connection - getchaintips: diagnose chain forks and orphan branches - invalidateblock: rewind chain past a bad block - reconsiderblock: re-activate a previously invalidated block Also includes: - systemd service files for Linux deployment - Bootstrap/snapshot guide for OpenClaw nodes - Upgrade notes from 2026-04-14 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
27 lines
1.0 KiB
Plaintext
27 lines
1.0 KiB
Plaintext
# systemd drop-in for trianglesd: enable unlimited core dumps so that
|
|
# crashes can be diagnosed post-mortem with `coredumpctl gdb`.
|
|
#
|
|
# Installation:
|
|
# sudo mkdir -p /etc/systemd/system/trianglesd.service.d
|
|
# sudo cp contrib/systemd/coredump.conf /etc/systemd/system/trianglesd.service.d/
|
|
# sudo systemctl daemon-reload
|
|
# sudo systemctl restart trianglesd
|
|
#
|
|
# Verify it took effect:
|
|
# systemctl show trianglesd | grep -E 'LimitCORE|LimitNOFILE'
|
|
#
|
|
# When the next crash happens, retrieve the stack trace with:
|
|
# coredumpctl list trianglesd
|
|
# coredumpctl gdb # most recent core; then run `bt full` at the (gdb) prompt
|
|
#
|
|
# See contrib/debug/CRASHDUMPS.md for the full playbook.
|
|
|
|
[Service]
|
|
# Allow the kernel to write a full core dump on SIGSEGV/SIGABRT/SIGBUS/SIGFPE.
|
|
LimitCORE=infinity
|
|
|
|
# systemd-coredump compresses and stores cores under /var/lib/systemd/coredump/.
|
|
# Make sure the package is installed:
|
|
# apt install systemd-coredump # Debian/Ubuntu
|
|
# dnf install systemd-coredump # Fedora/RHEL
|