我在 DigitalOcean 有一台安装了 Ubuntu 的服务器,并使用了正在运行的 rpc 的 bitcoind。
使用我的 Amazon AWS CentOs 服务器 bitcoin-cli 工作但不是 EasyBitcoin-PHP,它返回 0:
$bitcoin = new Bitcoin('username','password','myipaddress','8332');
echo "Status: ".$bitcoin->status;
比特币.conf
server=1
daemon=1
rpcuser=username
rpcpassword=password
rpcport=8332
rpcallowip=myipaddress
签出这张图片。在工作的 DigitalOcean Ubuntu 服务器上,它包括AddLocal(192.81.219.224:18333,1)
ANDDiscover: IPv4 eth0: 192.81.219.224
我也尝试添加-discover=1
到 AWS CentOS,但它没有做任何新的事情并且仍然无法正常工作。
我猜这可能与亚马逊的弹性 IP 或其他什么有关?