centos7 搭建bitcoin/usdt 节点服务

走远了吗. 提交于 2020-04-29 18:50:31

1.  下载依赖

yum install -y boost-devel qt-devel protobuf-devel qrencode-devel libevent-devel libtool openssl-devel 

2.下载  bitcoin core / omni core(usdt 节点)

https://github.com/bitcoin/bitcoin.git

https://github.com/OmniLayer/omnicore.git

 

bitcoin 解压为 bitcoin-master

usdt 解压为 omnicore-master

3.  安装libdb

wget 'http://download.oracle.com/berkeley-db/db-5.1.29.NC.tar.gz'

tar -xzf db-5.1.29.NC.tar.gz

cd db-5.1.29.NC/build_unix/

../dist/configure --enable-cxx --disable-shared --with-pic --prefix=/opt/bitcoin-master/db4/   (/opt/bitcoin-master  为2中解压的目录,usdt也要执行一次)

make install

4. 打开到bitcoin (/opt/bitcoin-master)  (此时目录中有db4 这个文件夹,如果没有,倒回步骤3 中再执行一次)

./autogen.sh

./configure LDFLAGS="-L/opt/bitcoin-master/db4/lib/" CPPFLAGS="-I/opt/bitcoin-master/include/" --with-incompatible-bdb

make

make install

5.打开 /usr/local/bin 

运行bitcoind 

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!