比原鏈(Bytom)節點接入文件
阿新 • • 發佈:2019-03-11
系統要求
我們建議選擇主要的幾家雲主機平臺的VPS服務,執行比原鏈節點對算力沒有要求,但是請配置儘可能大的磁碟空間以適應區塊鏈資料未來增長的需要。
節點伺服器最小配置:
作業系統: Windows/Linux/Docker
CPU: 2核
記憶體: 2G
硬碟: 40G
網路: 獨立IP,2MB頻寬
防火牆: 開啟46657埠
Ubuntu接入文件
1 節點伺服器部署
1.1 安裝系統依賴庫
sudo apt-get update
sudo apt-get install build-essential git unzip wget vim
1.2 下載並解壓節點
wget https://mirrors.tuna.tsinghua.edu.cn/osdn/bytom/70718/bytom-1.0.8-linux.zip
unzip bytom-1.0.8-linux.zip
chmod +777 ./bytomd
2 啟動並執行節點
./bytomd init --chain_id mainnet ./bytomd node --simd.enable
Windows接入文件
1 安裝系統依賴庫
1.1 安裝MinGW
官方連結:
https://nuwen.net/mingw.html
下載連結:
https://nuwen.net/files/mingw/mingw-16.1.exe
1.2 安裝Golang
官方地址:
https://golang.org/
下載連結:
https://studygolang.com/dl/golang/go1.12.windows-amd64.msi
參考連結:
https://studygolang.com/dl
1.3 安裝Git
官方地址:
https://git-scm.com/
下載連結:
https://git-scm.com/download/win
2 下載並解壓節點
下載連結:
https://mirrors.tuna.tsinghua.edu.cn/osdn/bytom/70718/bytom-1.0.8-linux.zip
解壓zip檔案,並右鍵資料夾許可權修改成可讀寫
3 啟動並執行節點
./bytomd.exe init --chain_id mainnet
./bytomd.exe node --simd.enable
Docker接入文件
1 獲取Docker映象
docker pull bytom/bytom:latest
2 初始化節點
docker run -v ~/Bytom:/root/.bytom bytom/bytom:latest bytomd init --chain_id mainnet
3 執行節點
docker run -d -p 46657:46657 -v ~/Bytom:/root/.bytom bytom/bytom:latest bytomd node --web.closed --a