ローカルホストだけでなく、任意のアドレスにノードをバインドする
3 回答
- 投票
-
- 2019-02-04
構成ファイルを使用している場合、2つの異なるポートがあります.
"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を繰り返すことができません `を取得しています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
-
はい、できました.遅延して申し訳ありませんが、機能します.コマンドラインから指定すると、構成ファイルが上書きされているようです.正直なところ、これは明らかなはずです.それはそれらのドーの1つです!瞬間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
私は問題を誤解しているかもしれませんが、サーバーへの安全なSSH接続を構築し、リモートマシンのアドレス127.0.0.1:8732を接続したいローカルホストにトンネルすることは解決策ではないでしょうか?
ここで
この方法で行いましたローカル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に接続できません.これは仕様によるものですか、それとも何かが足りないのですか.