노드를 localhost가 아닌 모든 주소에 바인딩
3 대답
- 투표
-
- 2019-02-04
구성 파일을 사용하는 경우 두 개의 다른 포트가 있습니다.
"listen-addr"
옵션은"p2p"
섹션과"rpc"
섹션.예를 들어"0.0.0.0:8732"
를 사용하여 모든 주소에서 포트 8732를 수신 할 수 있습니다.명령 줄을 사용할 수도 있습니다.
tezos-node run --rpc-addr 0.0.0.0:8732
If you are using a configuration file, there are two different ports : the
"listen-addr"
option can be used both in the"p2p"
section and in the"rpc"
section. You can use"0.0.0.0:8732"
for example to listen on port 8732 on all addresses.You can also use the command line:
tezos-node run --rpc-addr 0.0.0.0:8732
-
구성 파일의 rpc 섹션에서 시도했지만 작동하지 않았지만 다음 명령으로 노드를 시작합니다.tezos-node run,구성 파일의 매개 변수를 사용한다고 가정합니다.Tried it in rpc section of the config file, it did not work, but i start the node with this command: tezos-node run, i assume it will use the parameter from the config file.
- 0
- 2019-02-04
- Zx1984
-
명령 줄에서 실행해야합니다. 구성 파일이 작동하지 않아 모든 주소에서 시작 및 바인딩됩니다.It needs to be run on the command line, the config file does not work to start it and bind on all address
- 0
- 2019-02-04
- Zx1984
-
구성 파일 옵션을 사용하지 않는 이유를 알 수 없습니다.여기서 사용합니다.시작 스크립트의 인수로 옵션을 덮어 쓰지 않는 한.I don't see any reason why it wouldn't use the configuration file option. We use that here. Unless you overwrite the option with an argument in a starting script.
- 0
- 2019-02-05
- lefessan
-
Docker 컨테이너를 실행하는 방법은 무엇입니까?`./mainnet.sh start --rpc-addr 0.0.0.0 : 8732`를 시도했지만`tezos-node : option --rpc-addr cannotbe repeat '가 표시됩니다.How can this be done running docker containers? Tried `./mainnet.sh start --rpc-addr 0.0.0.0:8732` but I'm getting `tezos-node: option --rpc-addr cannot be repeated`
- 0
- 2019-02-07
- edu
-
- 2019-02-04
모든 인터페이스에서 수신하려면 IP 주소를 완전히 남겨 두십시오.
tezos-node run --rpc-addr :8732
To listen on all interfaces, leave the IP address out completely.
tezos-node run --rpc-addr :8732
-
나는 그것을 시도하고보고 할 것이다I will try it, and report back
- 0
- 2019-02-04
- Zx1984
-
@ Zx1984 시도 할 기회를 얻었습니까?@Zx1984 Did you get a chance to try?
- 0
- 2019-02-05
- Richard Ayotte
-
예,지연에 대해 죄송합니다. 작동합니다. 명령 줄에서 지정할 때 구성 파일 ws가 무시되는 것 같습니다. 솔직히 말해서 분명 했어야합니다.그 Doh 중 하나입니다!순간Yes i did, sorry for the delay, it works, it seems the configuration file ws being overidden when specified from the command line, which should have been obvious to be honest. It's one of those Doh! moments
- 0
- 2019-03-19
- Zx1984
-
- 2019-02-06
문제를 오해하고 있을지 모르지만,연결하려는 로컬 호스트에 대한 원격 시스템의 주소 127.0.0.1:8732 터널을 서버에 보안 SSH 연결을 구축하는 솔루션이 아닐까요?
여기에서 내 로컬 Firefox에서 KILN 구성을보기 위해
Maybe I am misunderstanding the problem, but wouldn't it be a solution to build up a secure SSH connection to the server an tunnel the address 127.0.0.1:8732 of the remote machine to the local host who wants to connect?
I did it this way here in order to look at the KILN config from my local Firefox.
누구든지 노드를 실행하여 모든 주소에 바인딩하는 방법을 알고 있습니까?원격으로 rpc 연결할 수없는 것 같습니다. 127.0.0.1에만 바인딩됩니다. 구성 파일 수신 주소를 0.0.0.0:8732로 설정하고 * : 8732를 시도했으며 다른 호스트의 rpc와 연결할 수 없습니다.이것은 의도 된 것입니까,아니면 내가 뭔가를 놓치고 있습니까?