ethereum / go-ethereum

Go implementation of the Ethereum protocol
https://geth.ethereum.org
GNU Lesser General Public License v3.0
47.74k stars 20.22k forks source link

Fatal: Error starting protocol stack: listen unix /mnt/f/Quorum1/quorumofficial/QBFT-Network/Node-0/data/geth.ipc: bind: operation not supported #26147

Closed cse-amarjeet closed 2 years ago

cse-amarjeet commented 2 years ago

I am trying to create a private network using Quorum (here is the link of Docs that I am following:- https://consensys.net/docs/goquorum/en/latest/tutorials/private-network/create-qbft-network/ )

Till step 5 ("Initialize nodes") works fine, but in step 6 when I run this command

( geth --datadir data --networkid 1337 --nodiscover --verbosity 5 --syncmode full --istanbul.blockperiod 5 --mine --miner.threads 1 --miner.gasprice 0 --emitcheckpoints --http --http.addr 127.0.0.1 --http.port 22000 --http.corsdomain "" --http.vhosts "" --ws --ws.addr 127.0.0.1 --ws.port 32000 --ws.origins "*" --http.api admin,eth,debug,miner,net,txpool,personal,web3,istanbul --ws.api admin,eth,debug,miner,net,txpool,personal,web3,istanbul --unlock ${ADDRESS} --allow-insecure-unlock --password ./data/keystore/accountPassword --port 30300 )

I am getting this error (Incorrect Usage. flag provided but not defined: -istanbul.blockperiod) image

then I removed (-istanbul.blockperiod) flag then I run then again and I got this error ((Incorrect Usage. flag provided but not defined: -emitcheckpoints):

image

then I removed "-emitcheckpoints" flag and run then I got this: (Fatal: Error starting protocol stack: listen unix /mnt/f/Quorum1/quorumofficial/QBFT-Network/Node-0/data/geth.ipc: bind: operation not supported)

I don't know where I made the mistake and how to solve This, but I need help, I am not able to figure it out. any help would be appreciated!!

s1na commented 2 years ago

Please create the issue on quorum's repo. They have a fork of Geth. Go-ethereum doesn't have the flag you mentioned.