Daemon
以程式方式進行通信 Dash 幣核心錢包
我使用以下網址中的說明在我的亞馬遜伺服器中安裝了破折號幣錢包
<https://planetcrypton.com/install-dash-daemon>
我想通過php程序交流硬幣錢包。我剛剛嘗試使用以下外掛從我的伺服器連接到硬幣錢包。但我無法連接到硬幣錢包,它顯示“來自 server0 的空回复”。我在 dash.conf 文件中添加了配置細節。
我在下面的配置設置中給出了相應的值
rpcuser=<some_reallY_long_really_random_username> rpcpassword=<some_really_long_really_random_password> alertnotify=echo %s | mail -s "DASH Alert" <your@email-address.com> server=1 daemon=1 addnode=23.23.186.131 listen=1 logtimestamps=1 maxconnections=256 masternode=0 masternodeaddr=<ip.add.re.ss>:9999 externalip=<ip.add.re.ss>
我只在我的伺服器中設置主節點設置,因為我不想從本地系統連接主節點。我需要通過程序連接錢包。誰能幫幫我嗎?
你應該添加
rpcport=8666 rpcallowip=0.0.0.0/0
工作配置文件範例:
rpcuser=username rpcpassword=strong_pass rpcallowip=0.0.0.0/0 listen=0 daemon=1 server=1 txindex=1 timestampindex=1 rpcthreads=4 rpcport=8666
並確保該埠已從您的網際網路提供商端和系統防火牆打開。