部署比特幣主網全數據節點


參考資料

部署過程

  1. 下載Bitcoin代碼

官方下載地址:bitcoincore.org/en/download/,不同系統選擇不同版本。

以linux為例:

wget https://bitcoincore.org/bin/bitcoin-core-22.0/bitcoin-22.0-x86_64-linux-gnu.tar.gz

tar -xzvf bitcoin-22.0-x86_64-linux-gnu.tar.gz
  1. 配置環境變量
vi ~/.bashrc



#bitcoin env

export BTCPATH=/root/bitcoin/bin

export PATH=$BTCPATH:$PATH



source ~/.bashrc
  1. 創建配置文件(bitcoin.conf
mkdir -p /btc_data

mkdir ~/.bitcoin

vi ~/.bitcoin/bitcoin.conf


datadir=/btc_data

dbcache=4096

txindex=1

irc=1

upnp=1

rpcuser=[your username]

rpcpassword=[your password]

daemon=1

server=1

addressindex=1

rest=1

rpcbind=0.0.0.0:8332

rpcallowip=0.0.0.0/0

deprecatedrpc=accounts

4.啟動節點

#后台運行

bitcoind -daemon

請注意

rpcuser=[your username]

rpcpassword=[your password]

5.檢查

#查看區塊鏈同步

bitcoin-cli getblockchaininfo

同步時間

截止到發稿2022/1/28 10:51,區塊同步信息如下:

{
  "chain": "main",
  "blocks": 642383,  // 當前同步的區塊高度
  "headers": 720686,  // 主網區塊高度
  "bestblockhash": "0000000000000000000fdb7094d6c0cc6190c8b889b46f431565ccbe5d11a7e7",
  "difficulty": 16847561611550.27,
  "mediantime": 1596661550,
  "verificationprogress": 0.7973446475106887,
  "initialblockdownload": true,
  "chainwork": "0000000000000000000000000000000000000000121654aa68906e226cbf59f0",
  "size_on_disk": 331753405195,
  "pruned": false,
  "softforks": {
    "bip34": {
      "type": "buried",
      "active": true,
      "height": 227931
    },
    "bip66": {
      "type": "buried",
      "active": true,
      "height": 363725
    },
    "bip65": {
      "type": "buried",
      "active": true,
      "height": 388381
    },
    "csv": {
      "type": "buried",
      "active": true,
      "height": 419328
    },
    "segwit": {
      "type": "buried",
      "active": true,
      "height": 481824
    },
    "taproot": {
      "type": "bip9",
      "bip9": {
        "status": "defined",
        "start_time": 1619222400,
        "timeout": 1628640000,
        "since": 0,
        "min_activation_height": 709632
      },
      "active": false
    }
  },
  "warnings": ""
}

開始同步時間是2022/1/27 15:23

服務器配置:

intel 4210 * 1, 20核
內存:32G×2
硬盤:8TB SAS 3.5 × 3
H330
電源:750 * 2
帶寬:公司網絡,平時下載峰值是127Kb。


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM