アルファネットの問題-蛇口でアカウントをアクティブ化
1 回答
- 投票
-
- 2019-08-02
回避策として、Dockerの cp コマンドを使用できます.
あなたの場合は次のようになります:
docker cp tz1Zvjxu9Vzt76uRLtV6CHZMPu1zKA5YV4QX.json alphanet_node_1:/home/tezos/tz1Zvjxu9Vzt76uRLtV6CHZMPu1zKA5YV4QX.json ./alphanet.sh client activate account myfaucet with tz1Zvjxu9Vzt76uRLtV6CHZMPu1zKA5YV4QX.json
You could use Docker's cp command as a workaround.
In your case it would be something like:
docker cp tz1Zvjxu9Vzt76uRLtV6CHZMPu1zKA5YV4QX.json alphanet_node_1:/home/tezos/tz1Zvjxu9Vzt76uRLtV6CHZMPu1zKA5YV4QX.json ./alphanet.sh client activate account myfaucet with tz1Zvjxu9Vzt76uRLtV6CHZMPu1zKA5YV4QX.json
-
ありがとうございました!それは1つの追加の動きで動作することになりました.Dockerコンテナの/home/tezosディレクトリにファイルを配置する必要がありました.したがって、元のコマンドは「docker cptz1Zvjxu9Vzt76uRLtV6CHZMPu1zKA5YV4QX.json alphanet_node_1:/home/tezos/tz1Zvjxu9Vzt76uRLtV6CHZMPu1zKA5YV4QX.json」になります.Thank you! That ended up working with one additional move. I needed to put the file into the /home/tezos directory of the docker container. So the original command can be "docker cp tz1Zvjxu9Vzt76uRLtV6CHZMPu1zKA5YV4QX.json alphanet_node_1:/home/tezos/tz1Zvjxu9Vzt76uRLtV6CHZMPu1zKA5YV4QX.json"
- 1
- 2019-08-03
- bmagierski
-
私が気付いたもう1つの問題は、クライアントが完全にブートストラップされていないことでした.最初にコマンド「$./alphanetclientbootstrapped」を実行しましたが、「bootstrapped」であると表示されなくなりました.ただし、タイムスタンプを見ると、早期にタイムアウトしました.クライアントを完全にブートストラップするには、ノードを複数回再起動し、ブートストラップを再実行する必要がありました.タイムスタンプが最新になるまで、操作を挿入することはできません.The other issue I was facing I noticed was that the client was not fully bootstrapped. I originally ran the command "$./alphanet client bootstrapped" and it ended stating that it was "bootstrapped". However, when looking at the time stamps, it timed out early. I needed to restart the node multiple times and re-run bootstrapped to get the client fully bootstrapped. Operations cannot be injected until the time stamp is current.
- 0
- 2019-08-03
- bmagierski
-
ありがとう!あなたのコメントに従って答えを更新しました.Thanks! I updated the answer according to your comment.
- 0
- 2019-08-03
- Klassare
Mac OSXでAlphanetを実行していて、すべてが正常に実行されていますが、蛇口JSONを使用してアカウントをアクティブ化しようとして障害が発生しました. Tezosにとってまったく新しい.
次のコマンドを実行します:
その後、定期的に次のエラーメッセージが表示されます:
./alphanet.shシェルを実行し、そこにあるファイルディレクトリを調べると、/tmpにファイルがあります.
システム上のファイルへのパスも指定してみました-例:
上記と同じエラーが発生します. Dockerがファイルをイメージに添付できないのか、セットアップのどこかにパラメーターがないのかわかりません.
ノードは完全にブートストラップされており、テジーのないウォレットを作成しましたが、すべてが正常に実行されているようです.ただし、蛇口からテジーを追加することはできません.
インターネット全体を調べたところ、問題がいくつかの場所に表示されていることがわかりましたが、実際の解決策はありません.どんな助けでも素晴らしいでしょう!