Reputation: 51
Q)After installing geth getting an error while attaching.How to fix this error?
geth attach
Fatal: Unable to attach to remote geth: no known transport for URL scheme "c"
Upvotes: 2
Views: 3335
Reputation: 1
you don't have access to personal and mine objects using localhost ... eth.personal undefined. Apparently you need to use ipc to get to the lower level objects
Upvotes: 0
Reputation: 386
If you using windows then try:
geth attach http://localhost:8545
this will properly work for windows work.
Upvotes: 1
Reputation: 10971
If you're using 1.8, you need to include the IPC path:
geth attach ipc:\\.\pipe\geth.ipc
See https://github.com/ethereum/go-ethereum/issues/15746
Upvotes: 5