2016-09-24 8 views
1

ローカルPC(Windows 10)にMistをインストールしましたが、Main/Testネットワークを同期したくありません。だから私はこのEthereum + Azureチュートリアルを使用しました、そして今私のプライベートネットワーク上でSSH経由で作業することができます。それよりもミストをリモートサーバ(Azure)のプライベートブロックチェインに接続するには?

geth --dev console 

より、私はそれが後に、geth --helpによると、私はアズールの仮想マシン上でgeth --dev --rpc consoleを実行している、

mist.exe --rpc http://YOUR_IP:PORT 

だから、特別なフラグを使用してblockchainカスタムでミストを実行することは可能だということを知っています私はmist.exe --rpc http://VM_IP:8545を実行しており、エラーがあります:

[2016-09-24 18:01:21.928] [INFO] Sockets/node-ipc - Connect to {"hostPort":"http://VM_IP:8545"} 
[2016-09-24 18:01:24.968] [ERROR] Sockets/node-ipc - Connection failed (3000ms elapsed) 
[2016-09-24 18:01:24.971] [WARN] EthereumNode - Failed to connect to node. Maybe it's not running so let's start our own... 
[2016-09-24 18:01:24.979] [INFO] EthereumNode - Node type: geth 
[2016-09-24 18:01:24.982] [INFO] EthereumNode - Network: test 
[2016-09-24 18:01:24.983] [INFO] EthereumNode - Start node: geth test 
[2016-09-24 18:01:32.284] [INFO] EthereumNode - 3000ms elapsed, assuming node started up successfully 
[2016-09-24 18:01:32.286] [INFO] EthereumNode - Started node successfully: geth test 
[2016-09-24 18:01:32.327] [INFO] Sockets/node-ipc - Connect to {"hostPort":"http://VM_IP:8545"} 
[2016-09-24 18:02:02.332] [ERROR] Sockets/node-ipc - Connection failed (30000ms elapsed) 
[2016-09-24 18:02:02.333] [ERROR] EthereumNode - Failed to connect to node Error: Unable to connect to socket: timeout 

PSミストバージョン - 0.8.2

+0

質問はhttp://ethereum.stackexchange.com/questions/8827/how-to-connect-mist-to-the-private-blockchain-on-remote-server-azureに移動しました –

答えて

1

あなたのアプローチは正しいです。私はあなたのミストがgethと話すのを防ぐネットワーク設定の問題があると言います。 私は次のテストをやって提案し、あなたが同じ問題が発生したかどうかを確認します: - geth --testnet --rpc で実行GETH - - あなたはミストを持っているマシン上で、geth.exe実行 を見つける​​か./Mist --rpc http://localhost:8545

でミストを開始

私はMac上にいるので、/を逆にしてC:の装飾をここに追加する必要があります。

関連する問題