如何从“设备上没有剩余空间”错误中恢复?
1 个回答
- 投票数
该解决方案的线索在于错误的部分,该错误表明Validation of block BK... failed
.
似乎并没有检查是否有任何可用的新可用磁盘空间,它只是在回读为什么它最初失败的错误.当验证块失败时,该块被标记为无效.
运行./tezos-admin-client unmark all invalid blocks
,并重新启动tezos-node
后,该节点已正确连接到对等端并再次同步.
The clue to the solution is in the part of the error saying that Validation of block BK... failed
.
It seems that it wasn't checking to see if there was any new free disk space available, it was just reading back the error of why it failed in the first place. And when it failed to validate the block, the block was marked as invalid.
After running ./tezos-admin-client unmark all invalid blocks
and restarting the tezos-node
, the node is properly connecting to peers and syncing again.
节点使用的驱动器磁盘空间不足.这导致了一系列类似于以下格式的错误:
该节点停止同步,所有对等节点都断开连接.
我释放了足够的磁盘空间并重新启动了该节点,但是它继续重复以上关于磁盘空间不足并拒绝同步,与所有对等方断开连接的错误.
如何使节点意识到驱动器上有可用空间并恢复同步?