도커 이미지를 사용하여 개인 모드에서 tezos 노드를 실행하는 방법은 무엇입니까?
1 대답
- 투표
-
- 2019-02-04
./mainnet.sh start
로 docker 노드를 시작할 때--private-mode --peer AAA.BBB.CCC.DDD:PORT
(비공개 노드를 공개 노드에 연결하려면--peer
를 지정해야 할 수 있습니다).When you launch the docker node with
./mainnet.sh start
, you can add extra arguments such as--private-mode --peer AAA.BBB.CCC.DDD:PORT
(you probably need to specify--peer
to connect your private node to your public node).-
정보 주셔서 감사합니다.이미 공개 노드로 실행중인 노드가 있습니다.이제 노드 컨테이너를 중지 한 다음 개인 노드 플래그로 시작하면 현재 설정에 부작용이 있습니까 (예 : 이전에 연결된 노드의 연결 실패 또는 기타 예상치 못한 오류)?Thanks for the information. I already have my node running as public node. Now if i stop the node container and then start it with private node flag, will there be any side effect to my current setup (like connection failure with previously connected node or some other unexpected error) OR i should be good to go?
- 0
- 2019-02-04
- Sachin Tomar
-
작동하지만 일부 연결이 거부되는 것을 알 수 있습니다.그건 문제가 아니니 무시하세요.It should work, but you will probably notice some connections being rejected. That's not a problem, disregard them.
- 1
- 2019-02-04
- lefessan
-
위의 구성 옵션에 구문 오류가 있다고 생각합니다.--peer=AAA.BBB.CCC.DDD : PORT 여야합니다.An=대신I think there is some syntax error in above configuration options. it should be --peer=AAA.BBB.CCC.DDD:PORT . An = instead of
- 0
- 2019-02-05
- Sachin Tomar
-
나는이 명령을 사용했다.거부되었지만 내 노드가 내 공개 노드에 연결되지 않습니다.I used this command ./mainnet.sh start --private-mode --no-bootstrap-peers --bootstrap-threshold=1 --connections 1 --peer
But all i get is incoming connections rejected but my node is not getting connected to my public node. - 0
- 2019-02-14
- Sachin Tomar
-
포트 (예 : ˋ—peer host :port`)도 지정 했습니까?공용 노드가 이미 가득 찬 경우 연결이 거부됩니다.Did you also specify the port, ie ˋ—peer host:port` ? Note that, if the public node is already full, it will reject your connection.
- 0
- 2019-02-14
- lefessan
-
아니요 포트를 지정하지 않았습니다.포트 8732를 지정해야합니까?퍼블릭 노드가 이미 꽉 찼는 지 여부를 어떻게 알 수 있습니까?내 공개 노드가 가득 차면 어떻게해야합니까?No i did not specify the port. Do i need to specify the port 8732? And how do i know that my public node is already full or not? And what to do if my public node is full?
- 0
- 2019-02-15
- Sachin Tomar
-
@SachinTomar 저도 같은 문제가 있습니다.내 비공개 노드가 내 공개 노드에 연결되지 않았습니다.그리고 내 개인 노드가 "[개인 노드] 트러스되지 않은 피어에서 들어오는 연결이 거부되었습니다!"해결책을 찾았습니까?@SachinTomar I'm having the same problem. My private node not connecting to my public node. And my private node getting "[private node] incoming connection from untrused peer rejected!" Did you find a solution?
- 0
- 2019-04-11
- Svante
-
@Svante 예 먼저 sudo ./mainnet.sh admin-clienttrust address
: 9732 명령을 사용하여 개인 노드 IP와 공용 노드 IP를 서로 서버에 추가하고 lefessan에서 언급했듯이 내에서 --peer 옵션을 추가했습니다.start docker command ./mainnet.sh start --private-mode --peer : 9732 "신뢰할 수없는 피어에서 들어오는 연결이 거부 됨"메시지를 무시할 수 있습니다. @Svante Yes i first add my private node IP and public node IP to each other server using command sudo ./mainnet.sh admin-client trust address:9732 and as mentioned by lefessan i added --peer option in my start docker command ./mainnet.sh start --private-mode --peer :9732 You can ignore the "incoming connection from untrusted peer rejected" messages - 0
- 2019-04-12
- Sachin Tomar
이미 기본 구성으로 docker 이미지 를 사용하여 노드를 실행하고 있습니다. 따라서 공용 네트워크에 연결된 센트리 노드를 몇 개 실행할 수 있도록 개인 노드에서 실행되도록 변경하려면 어떻게해야합니까?내 베이커 노드가 공개적으로 노출되지 않도록 개인 노드를 센트리 노드에 연결합니다.
이미 이 를 알고 있으므로Docker 이미지를 사용하는 솔루션입니다.