Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to attach to remote geth: Invalid pipe address '/.rinkeby/geth.ipc'

I'm on Windows trying to connect to Ethereum Testnet via rinkeby.

I downloaded geth 1.8.2 and Ethereum Wallet 0.9.3

I gave 1st command as:

geth --rinkeby --fast --cache=1024

NOTE: after above command, I get the url on cmd as:

url=\\.\pipe\geth.ipc

And 2nd command in another command prompt as:

geth --datadir=./rinkeby attach

The same commands were working earlier.

I uninstalled both geth and Ethereum wallet and installed latest versions. I tried the commands on the earlier versions also where they were working but now they are not.

I also tried connecting to Private net just now, but got the error message on 2nd command prompt as:

Unable to attach to remote geth: no known transport for URL scheme "c"

Thanks in advance!

like image 591
PrashantNagawade Avatar asked Mar 07 '18 06:03

PrashantNagawade


1 Answers

I think this issue only occurs on Windows. Refer: https://github.com/ethereum/go-ethereum/issues/15746

Try the following to specify the IPC path

geth attach ipc:\\.\pipe\geth.ipc

It should work on Win10 and v1.8.x-stable

like image 123
RKalra Avatar answered Sep 21 '22 01:09

RKalra