Go-Ethereum

當我從命令提示符 IN MAC 執行 geth 時,霧不執行

  • February 15, 2018

我想在網路上本地啟動 rinkeby ……

當我從命令行執行 geth 時,它使用 datadir 文件夾。在 geth 上執行時,我也想啟動霧,但它給了我錯誤 datadir is used by another process。

我如何同時執行兩者

提前致謝

儘管您的問題對我來說並不清楚,但我將嘗試提供將 geth 與 Mist 連接起來的一般步驟。

  1. 啟動geth節點: geth --datadir="/some/path/to/chaindata_folder" --rpc --rpccorsdomain "*" --rpcapi "eth,web3,personal,net,miner,admin,debug"
  2. 使用指定的 geth.ipc 文件在新的終端選項卡/視窗中啟動 Mist(參見 geth 終端):open -a /applications/mist.app/contents/macos/mist --args --rpc "/some/path/to/geth.ipc"
  3. 在新終端中附加 geth.ipc: geth attach ipc:"/some/path/to/geth.ipc"

/some/path/to/geth.ipc - 在第一個終端中找到“IPC 端點打開:”

引用自:https://ethereum.stackexchange.com/questions/39618