rodtang
@rodtang (* ロッタン)

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

バックグラウンドでgethが起動しない

解決したいこと

gethの勉強をしているのですが、バックグラウンドでgethを起動できません。

$ nohup geth --networkid 4649 --nodiscover --maxpeers 0 --datadir ./data_testnet --mine --minerthreads 1 --rpc 2>> ./data_testnet/geth.log &

上のコマンドを実行し、コンソールに接続しようとすると、コンソールの接続に失敗したという趣旨のエラーが表示されます。

$ geth attach rpc:http://localhost:8545

Fatal: Failed to start the JavaScript console: api modules: Post "http://localhost:8545": dial tcp 127.0.0.1:8545: connect: connection refused

logを見てみると以下のような表示が出ているのですが、解決方法がわかりません。
教えていただけると幸いです。

nohup: ignoring input and appending output to 'nohup.out'
flag provided but not defined: -minerthreads
0

1Answer

コマンドに渡している --minerthreads オプションを --miner.threads に直してください。

0Like

Comments

  1. @rodtang

    Questioner

    ありがとうございます。
    同じ結果でした。
  2. @rodtang

    Questioner

    ログを見ると、次は
    flag provided but not defined: -rpc
    と出ていました。
  3. @rodtang

    Questioner

    貴重なページを教えていただきありがとうございます。
    試してみます。

Your answer might help someone💌