From 23840edc1157c7ff98f4610ae0a4a22137ee3083 Mon Sep 17 00:00:00 2001 From: aitbc Date: Wed, 15 Apr 2026 08:31:30 +0200 Subject: [PATCH] Remove restrictive systemd security settings and expand ReadWritePaths for blockchain node service - Remove StartLimitBurst and StartLimitIntervalSec from aitbc-blockchain-node systemd service - Change ReadWritePaths from /var/lib/aitbc/data/blockchain to /var/lib/aitbc/data to allow broader data directory access --- systemd/aitbc-blockchain-node.service | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/systemd/aitbc-blockchain-node.service b/systemd/aitbc-blockchain-node.service index cd1381f7..5972c507 100644 --- a/systemd/aitbc-blockchain-node.service +++ b/systemd/aitbc-blockchain-node.service @@ -22,8 +22,6 @@ TimeoutStopSec=10 # Production reliability Restart=always RestartSec=5 -StartLimitBurst=5 -StartLimitIntervalSec=60 # Production logging StandardOutput=journal @@ -34,7 +32,7 @@ SyslogIdentifier=aitbc-blockchain-production NoNewPrivileges=true ProtectSystem=strict ProtectHome=true -ReadWritePaths=/var/lib/aitbc/data/blockchain /var/log/aitbc/production/blockchain +ReadWritePaths=/var/lib/aitbc/data /var/log/aitbc/production/blockchain # Production performance LimitNOFILE=65536