见证人丢块

in hive-180932 •  4 years ago 

睡醒时,发现见证人丢了400多个块。登陆到见证人服务器后,发现程序停了

查了半天问题,最后锁定问题关键,硬盘空间

见证人运行在google cloud的服务器上,一开始创建服务器的时候,没发现初始硬盘空间只有10 GB

经过一个月的运行,10GB硬盘被全部用完,服务器没办法储存更多信息,导致程序出错关闭

所以必须给服务器添加更多的硬盘空间

怎么添加硬盘空间可以参考:https://cloud.google.com/compute/docs/disks/regional-persistent-disk#resize_partitions

按照上面的步骤添加好硬盘空间后,需要把硬盘空间添加到硬盘上,步骤也挺简单

  • sudo apt -y install cloud-guest-utils
  • sudo growpart /dev/DEVICE_ID PARTITION_NUMBER (eg. sudo growpart /dev/sda 1)
  • sudo resize2fs /dev/DEVICE_IDPARTITION_NUMBER(eg. sudo resize2fs /dev/sda1)

这样就给sda1硬盘添加了额外90 GB的空间

image.png

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!
Sort Order:  
  ·  4 years ago 

这应该可以建立虚拟磁盘进行存储吧

拍拍拍