Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,在我运行一个节点之后:
npx hardhat node
我想结束节点并释放端口,这样我就可以运行另一个节点,例如:
npx hardhat node --fork <mainnet_link>
目前,我执行 ctrl+z 并使用 lsof -i :8545 获取端口的 PID,然后执行 kill -9 PID 以释放端口,否则我会收到 EADDRINUSE 错误。
无论如何要从节点杀死端口而不是执行ctrl + z?
我刚刚在安全帽不和谐中得到了答案:
Ctrl+C