EOS启动节点之前配置文件的修改

启动eos节点
nodeos
这时你会发现程序不能正常运行,看不到出块信息,需要进行以下的操作
执行完7以后,再次启动

修改nodeos配置文件 ~/.local/share/eosio/nodeos/config/config.ini
查看配置文件,按照下面的内容,替换或者添加到配置文件中
vim ~/.local/share/eosio/nodeos/config/config.ini

Load the testnet genesis state, which creates some initial block producers with the default key

genesis-json = /你的eos目录/build/genesis.json

Enable production on a stale chain, since a single-node test chain is pretty much always stale

enable-stale-production = true

Enable block production with the testnet producers

producer-name = eosio

Load the block producer plugin, so you can produce blocks

plugin = eosio::producer_plugin

Wallet plugin

plugin = eosio::wallet_api_plugin

As well as API and HTTP plugins

plugin = eosio::chain_api_plugin
plugin = eosio::http_plugin

This will be used by the validation step below, to view account history

plugin = eosio::account_history_api_plugin

你可能感兴趣的:(EOS启动节点之前配置文件的修改)