1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

geth起動

Last updated at Posted at 2018-06-16
1 / 2

ターミナルってやつにぶち込む

最初の設定

sudo mkdir -p /tools/ethereum/Geth-1.6.5
sudo chmod 777 /tools/ethereum/Geth-1.6.5

パスを通す

export PATH=$PATH:/tools/ethereum/Geth-1.6.5

データの初期化

geth --datadir /tools/ethereum/Geth-1.6.5/home/eth_private_net init /tools/ethereum/Geth-1.6.5/home/eth_private_net/genesis.json

geth起動

geth --networkid "10" --nodiscover --datadir "/tools/ethereum/Geth-1.6.5/home/eth_private_net" --rpc --rpcaddr "localhost" --rpcport "8545" --rpccorsdomain "*" --rpcapi "eth,net,web3,personal" --targetgaslimit "20000000" console 2>> /tools/ethereum/Geth-1.6.5/home/eth_private_net/geth_err.log

ブロックチェーンアプリケーション開発の教科書を見ました
gethバージョンは少し違いますが,,,

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?