以太坊:无法打开数据库:资源暂时不可用
Ethereum: could not open database: resource temporarily unavailable
我正在开始使用以太坊并构建一个 Dapp(这到底是什么意思?)。在应用程序的基本安装 (https://github.com/ethereum/wiki/wiki/Dapp-using-Meteor#connect-your-%C3%90app) 中,我在尝试连接时遇到此错误。
geth --rpc --rpccorsdomain "http://localhost:3000"
I0804 23:48:24.987448 ethdb/database.go:82] Alloted 128MB cache and 1024 file handles to /Users/( . )Y( . )/Library/Ethereum/chaindata
Fatal: Could not open database: resource temporarily unavailable
我真的是刚开始,我通过自制软件设置了以太坊,并在 geth 上注册了一个帐户。不能从这里过去。
谢谢!
您的 geth
客户是 already running in the background。您可以通过键入附加到它:
$ geth attach
在你的命令行中。这将允许您在 geth
客户端控制台上执行 运行 命令。
我正在开始使用以太坊并构建一个 Dapp(这到底是什么意思?)。在应用程序的基本安装 (https://github.com/ethereum/wiki/wiki/Dapp-using-Meteor#connect-your-%C3%90app) 中,我在尝试连接时遇到此错误。
geth --rpc --rpccorsdomain "http://localhost:3000"
I0804 23:48:24.987448 ethdb/database.go:82] Alloted 128MB cache and 1024 file handles to /Users/( . )Y( . )/Library/Ethereum/chaindata
Fatal: Could not open database: resource temporarily unavailable
我真的是刚开始,我通过自制软件设置了以太坊,并在 geth 上注册了一个帐户。不能从这里过去。
谢谢!
您的 geth
客户是 already running in the background。您可以通过键入附加到它:
$ geth attach
在你的命令行中。这将允许您在 geth
客户端控制台上执行 运行 命令。