1 Star 0 Fork 1.4K

xiangboren / CoinExchange

forked from Jammy / CoinExchange 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
搭建USDT钱包.md 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
cryptoman 提交于 2020-04-08 17:37 . 新增部署文档

Ubuntu 16.04 搭建基于omni的USDT钱包

磁盘挂载(如有必要)

https://help.aliyun.com/document_detail/25426.html?spm=a2c4g.11186623.6.610.yemgNN

下载

cd /mnt
wget https://bitcoin.org/bin/bitcoin-core-0.16.1/bitcoin-0.16.1-x86_64-linux-gnu.tar.gz
tar -xzvf bitcoin-0.16.1-x86_64-linux-gnu.tar.gz

其他版本下载

配置

mkdir bitcoin
cd bitcoin
vim bitcoin.conf

添加以下信息(根据实际情况修改):

listen=1
server=1
rpcuser=bitcoinuser
rpcpassword=kmgcB6MKdpXDvcjXeR8nubP9TrRnmtzN
rpcport=7010
rpcallowip=172.21.247.154

启动

nohup /mnt/bitcoin-0.16.1/bin/./bitcoind --datadir=/mnt/bitcoin &

创建启动脚本

vim start_service.sh
#!/bin/bash
nohup /mnt/bitcoin-0.16.1/bin/./bitcoind --datadir=/mnt/bitcoin --conf=/mnt/bitcoin/bitcoin.conf &
exit 0
sudo chmod +x start_service.sh
sudo mv start_service.sh /etc/init.d/
cd /etc/init.d/
sudo update-rc.d start_service.sh defaults 90
Java
1
https://gitee.com/boren/CoinExchange.git
git@gitee.com:boren/CoinExchange.git
boren
CoinExchange
CoinExchange
master

搜索帮助