Lohith
Lohith

Reputation: 51

How to fix the error of geth

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

Answers (3)

Richard
Richard

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

Ahmad Altayeb
Ahmad Altayeb

Reputation: 386

If you using windows then try:

geth attach http://localhost:8545

this will properly work for windows work.

Upvotes: 1

Adam Kipnis
Adam Kipnis

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

Related Questions