Vinculando el nodo a cualquier dirección, no solo localhost
3 respuestas
- votos
-
- 2019-02-04
Siestá usando un archivo de configuración,hay dospuertos diferentes: la opción
"listen-addr"
puede usarsetantoen la sección"p2p"
yenla sección"rpc"
.Puede utilizar"0.0.0.0:8732"
,porejemplo,paraescucharen elpuerto 8732en todas las direcciones.Tambiénpuede usar la línea de comando:
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
-
Lointentéen la sección rpc del archivo de configuración,nofuncionó,peroinicioelnodo coneste comando:tezos-node run,supongo que usaráelparámetro del archivo de configuración.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
-
Debeejecutarseen la línea de comando,el archivo de configuraciónnofuncionaparainiciarlo yenlazarloen todas las direccionesIt 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
-
No veoninguna razónpor la queno usaría la opción de archivo de configuración.Usamoseso aquí.Amenos que sobrescriba la opción con un argumentoen unguióninicial.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
-
¿Cómo sepuede hacerestoejecutando contenedores Docker?Intenté `./mainnet.sh start --rpc-addr 0.0.0.0: 8732`pero obtengo`tezos-node: option --rpc-addr can'tbe 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
Paraescucharen todas lasinterfaces,omita la dirección IPpor completo.
tezos-node run --rpc-addr :8732
To listen on all interfaces, leave the IP address out completely.
tezos-node run --rpc-addr :8732
-
Lointentarée informaréI will try it, and report back
- 0
- 2019-02-04
- Zx1984
-
@ Zx1984 ¿Tuviste la oportunidad deprobar?@Zx1984 Did you get a chance to try?
- 0
- 2019-02-05
- Richard Ayotte
-
Sí,lo hice,perdónpor la demora,funciona,parece queel archivo de configuración se anula cuando seespecifica desde la línea de comandos,lo que debería haber sido obviopara ser honesto.Es uno deesos Doh!momentosYes 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
Tal vezestéentendiendomalelproblema,pero ¿no sería una solución construir una conexión SSH segura al servidor y untúnel desde la dirección 127.0.0.1:8732 de lamáquina remota al host local que quiere conectarse?
Lo hice deestamanera aquí para ver la configuración de KILN desdemi Firefox local.
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.
¿Alguien sabe cómoejecutarelnodoparaenlazar atodas las direcciones?Parece quenopuedo conectarme a rpc deforma remota,se une a 127.0.0.1 ynadamás. Configuré la dirección deescucha del archivo de configuraciónen 0.0.0.0:8732,tambiénprobé *: 8732 ynopuedo conectarme con rpc desde otro host.¿Esestopor diseño ome falta algo?