[Ethereum] run geth light mode looking for peers forever

go-ethereum

i run a geth light mode node on Ubuntu by
geth –syncmode "light" –identity "mydev" –rpc –rpccorsdomain "*" –datadir "/root/mygeth/chain" –rpcapi "db,eth,net,web3" –networkid 1 console

But it always looking for peers and peer count is 0

Do I need to add some peers and where to find

Thanks

Best Answer

When full nodes decide to serve light nodes, they use much more bandwidth and read a lot off of their disk, so most people don't serve light nodes. I've had problems running any kind of nodes on Ubuntu, so that might be your problem. Also, there are tons of light nodes waiting for new ones. Don't try to run a light node during ICO, you will never find one.

Related Topic