使用“geth attach”命令但在ubuntu

时间:2016-10-05 15:10:25

标签: bitcoin blockchain ethereum

我打开一个shell并创建一个新帐户并使用“miner.start()”  比我打开一个新的shell并使用“geth attach”命令但失败了, 并且错误消息是

Fatal: Unable to attach to remote geth: dial unix /home/hzxscyq/.ethereum/geth.ipc: connect: no such file or directory

然后我尝试“geth”,错误信息是

Fatal: Error starting protocol stack: listen udp :30303: bind: address already in use

我想知道如何使用geth attach? 感谢

1 个答案:

答案 0 :(得分:0)

Geth成功启动时会创建 geth.ipc 。看起来像 另一个Geth实例已经在运行,这可能会阻止成功的发射。找到Geth进程并杀死它。

ps -eaux | grep "geth"

获取进程ID并使用

终止该进程
kill -9 <pid>

现在调用geth并附加到它