Invalid command network Id #6380
-
Hi,I'm using private blockchain Geth Poa as part of my project and I'm getting an error as Invalid command network id when i run the following command: geth –-networkid 14333 –-datadir "./data" –-bootnodes enode://e232fc05bada41b4d2f6917bf6adc3dd3e9eed006a06ba8f75d24c0ed211f5df68a4d9c21a65d394e20bc18bf2c0243ee9782e46a85f08cacf40a8856b908779@127.0.0.1:0 -– port 30303 –-ipcdisable –-syncmode full –-HTTP --allow-insecure-unlock --HTTP. coredomain –-HTTP. port 8545 –-unlock 0x91cA54677a6cB2912DA82358a50f5D8067001C37 –-password password.txt –-mine console Kindly help! Thanks in Advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
geth --networkid 14333 --datadir "./data" --bootnodes "enode://e232fc05bada41b4d2f6917bf6adc3dd3e9eed006a06ba8f75d24c0ed211f5df68a4d9c21a65d394e20bc18bf2c0243ee9782e46a85f08cacf40a8856b908779@127.0.0.1:0" --port 30303 --ipcdisable --syncmode full --http --allow-insecure-unlock --http.corsdomain "*" --http.port 8545 --unlock 0x91cA54677a6cB2912DA82358a50f5D8067001C37 --password password.txt --mine console Try this command , and Make sure to replace "" in --http.corsdomain "" with the actual domain you want to allow CORS requests from. |
Beta Was this translation helpful? Give feedback.
geth --networkid 14333 --datadir "./data" --bootnodes "enode://e232fc05bada41b4d2f6917bf6adc3dd3e9eed006a06ba8f75d24c0ed211f5df68a4d9c21a65d394e20bc18bf2c0243ee9782e46a85f08cacf40a8856b908779@127.0.0.1:0" --port 30303 --ipcdisable --syncmode full --http --allow-insecure-unlock --http.corsdomain "*" --http.port 8545 --unlock 0x91cA54677a6cB2912DA82358a50f5D8067001C37 --password password.txt --mine console
Try this command , and Make sure to replace "" in --http.corsdomain "" with the actual domain you want to allow CORS requests from.