Alphanet 문제-수도꼭지로 계정 활성화
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
-
감사합니다!그것은 결국 하나의 추가 이동으로 작업했습니다.도커 컨테이너의/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
-
내가 직면 한 다른 문제는 클라이언트가 완전히 부트 스트랩되지 않았다는 것입니다.원래 "$./alphanet clientbootstrapped"명령을 실행했고 "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가 파일을 이미지에 첨부 할 수 없는지 또는 설정 어딘가에 매개 변수가 없는지 모르겠습니다.
노드가 완전히 부트 스트랩되고,테지없이 지갑을 만들었으며 모든 것이 정상적으로 실행되는 것 같습니다. 그러나 나는 수도꼭지를 통해tezzies를 추가 할 수 없습니다.
인터넷을 둘러 본 결과 문제가 몇 군데에 나타나는 것을 보았지만 실제 해결책은 없습니다. 어떤 도움이라도 좋을 것입니다!