sei-protocol / sei-chain

Apache License 2.0
2.7k stars 804 forks source link

unable start full node #32

Closed SNSMLN closed 1 year ago

SNSMLN commented 2 years ago

System details:

uname -a
Linux rig01 5.13.0-44-generic #49-Ubuntu SMP Wed May 18 13:28:06 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

cat /etc/lsb-release 
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=21.10
DISTRIB_CODENAME=impish
DISTRIB_DESCRIPTION="Ubuntu 21.10"

Setup script:

ver="1.18.1"
sudo rm -rf $HOME/go/bin
cd $HOME
wget "https://golang.org/dl/go$ver.linux-amd64.tar.gz"
tar -C $HOME -xzf "go$ver.linux-amd64.tar.gz"
rm "go$ver.linux-amd64.tar.gz"
echo "export PATH=$PATH:$HOME/go/bin" >> $HOME/.bash_profile
source $HOME/.bash_profile
go version

sudo apt-get install git
sudo apt-get install make

cd $HOME
git clone https://github.com/sei-protocol/sei-chain
cd sei-chain
git checkout origin/1.0.1beta-upgrade
make install
seid version --long

seid keys add KEYS

seid init MONIKER --chain-id sei-testnet-1

wget -O $HOME/.sei/config/genesis.json https://github.com/sei-protocol/testnet/raw/main/sei-testnet-1/genesis.json
wget -O $HOME/.sei/config/addrbook.json https://github.com/sei-protocol/testnet/raw/main/sei-testnet-1/addrbook.json

sed -i 's/minimum-gas-prices = ""/minimum-gas-prices = "0.01usei"/g' $HOME/.sei/config/app.toml

sudo tee /etc/systemd/system/seid.service > /dev/null <<EOF
[Unit]
Description=Sei-Network Node
After=network.target
[Service]
Type=simple
User=$USER
WorkingDirectory=$HOME
ExecStart=$(which seid) start
Restart=on-failure
StartLimitInterval=0
RestartSec=3
LimitNOFILE=65535
LimitMEMLOCK=209715200
[Install]
WantedBy=multi-user.target
EOF

sudo systemctl daemon-reload
sudo systemctl enable seid.service
sudo systemctl restart seid 
journalctl -u seid -f

Setup log:

--2022-06-03 20:56:38--  https://golang.org/dl/go1.18.1.linux-amd64.tar.gz                                                                
Resolving golang.org (golang.org)... 64.233.161.141, 2a00:1450:4010:c01::8d                                                               
Connecting to golang.org (golang.org)|64.233.161.141|:443... connected.                                                                   
HTTP request sent, awaiting response... 301 Moved Permanently                                                                             
Location: https://go.dev/dl/go1.18.1.linux-amd64.tar.gz [following]                                                                       
--2022-06-03 20:56:42--  https://go.dev/dl/go1.18.1.linux-amd64.tar.gz                                                                    
Resolving go.dev (go.dev)... 216.239.34.21, 216.239.32.21, 216.239.38.21, ...                                                             
Connecting to go.dev (go.dev)|216.239.34.21|:443... connected.                                                                            
HTTP request sent, awaiting response... 302 Found                                                                                         
Location: https://dl.google.com/go/go1.18.1.linux-amd64.tar.gz [following]                                                                
--2022-06-03 20:56:50--  https://dl.google.com/go/go1.18.1.linux-amd64.tar.gz                                                             
Resolving dl.google.com (dl.google.com)... 142.250.179.142, 2a00:1450:400e:801::200e                                                      
Connecting to dl.google.com (dl.google.com)|142.250.179.142|:443... connected.                                                            
HTTP request sent, awaiting response... 200 OK                                                                                            
Length: 141699677 (135M) [application/x-gzip]                                                                                             
Saving to: ‘go1.18.1.linux-amd64.tar.gz’                                                                                                  
go1.18.1.linux-amd64.tar.gz        100%[++++++++++++++++++++++++++++++++++++++========================>] 135,13M   226KB/s    in 3m 20s  

2022-06-03 21:26:41 (271 KB/s) - ‘go1.18.1.linux-amd64.tar.gz’ saved [141699677/141699677]

go version go1.18.1 linux/amd64
[sudo] password for sei: 
Sorry, try again.
[sudo] password for sei: 
Reading package lists...
Building dependency tree...
Reading state information...
git is already the newest version (1:2.32.0-1ubuntu1.2).
The following package was automatically installed and is no longer required:
  python3-pyinotify
Use 'sudo apt autoremove' to remove it.
0 upgraded, 0 newly installed, 0 to remove and 69 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
make is already the newest version (4.3-4ubuntu1).
The following package was automatically installed and is no longer required:
  python3-pyinotify
Use 'sudo apt autoremove' to remove it.
0 upgraded, 0 newly installed, 0 to remove and 69 not upgraded.
Cloning into 'sei-chain'...
remote: Enumerating objects: 972, done.
remote: Counting objects: 100% (256/256), done.
remote: Compressing objects: 100% (114/114), done.
remote: Total 972 (delta 174), reused 162 (delta 139), pack-reused 716
Receiving objects: 100% (972/972), 580.26 KiB | 41.00 KiB/s, done.
Resolving deltas: 100% (533/533), done.
Note: switching to 'origin/1.0.1beta-upgrade'.
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by switching back to a branch.

If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -c with the switch command. Example:

  git switch -c <new-branch-name>

Or undo this operation with:

  git switch -

Turn off this advice by setting config variable advice.detachedHead to false

HEAD is now at 7eae422 Add upgrade logic
go install -tags "netgo ledger" -ldflags '-X github.com/cosmos/cosmos-sdk/version.Name=sei -X github.com/cosmos/cosmos-sdk/version.ServerN
ame=seid -X github.com/cosmos/cosmos-sdk/version.Version=1.0.1beta -X github.com/cosmos/cosmos-sdk/version.Commit=7eae422e9ab3db380c539731
785221287ffca140 -X "github.com/cosmos/cosmos-sdk/version.BuildTags=netgo ledger,"' ./cmd/seid
go: downloading github.com/spf13/cast v1.4.1
go: downloading github.com/spf13/cobra v1.4.0
go: downloading github.com/cosmos/cosmos-sdk v0.45.4
go: downloading github.com/CosmWasm/wasmd v0.27.0
go: downloading github.com/spf13/pflag v1.0.5
go: downloading github.com/tendermint/starport v0.19.2
go: downloading github.com/tendermint/tendermint v0.34.19
go: downloading github.com/tendermint/tm-db v0.6.8-0.20220519162814-e24b96538a12
go: downloading github.com/cosmos/ibc-go/v3 v3.0.0
go: downloading go.opentelemetry.io/otel v1.6.3
go: downloading github.com/regen-network/protobuf v1.3.3-alpha.regen.1
go: downloading github.com/CosmWasm/wasmvm v1.0.0
go: downloading github.com/grpc-ecosystem/grpc-gateway v1.16.0
go: downloading github.com/gorilla/mux v1.8.0
go: downloading github.com/google/gofuzz v1.2.0
go: downloading github.com/prometheus/client_golang v1.12.1
go: downloading github.com/stretchr/testify v1.7.1
go: downloading google.golang.org/grpc v1.33.2
go: downloading github.com/google/btree v1.0.1
go: downloading github.com/syndtr/goleveldb v1.0.1-0.20200815110645-5c35d600f0ca
go: downloading github.com/golang/protobuf v1.5.2
go: downloading github.com/pkg/errors v0.9.1
go: downloading github.com/regen-network/cosmos-proto v0.3.1
go: downloading google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac
go: downloading gopkg.in/yaml.v2 v2.4.0
go: downloading github.com/spf13/viper v1.11.0
go: downloading github.com/go-kit/log v0.2.0
go: downloading github.com/go-logfmt/logfmt v0.5.1
go: downloading github.com/rs/zerolog v1.26.0
go: downloading github.com/gogo/gateway v1.1.0
go: downloading github.com/gorilla/handlers v1.5.1
go: downloading github.com/rakyll/statik v0.1.7
go: downloading github.com/armon/go-metrics v0.3.10
go: downloading google.golang.org/protobuf v1.28.0
go: downloading github.com/cosmos/go-bip39 v1.0.0
go: downloading github.com/hashicorp/golang-lru v0.5.4
go: downloading github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
go: downloading go.opentelemetry.io/otel/exporters/jaeger v1.6.3
go: downloading go.opentelemetry.io/otel/sdk v1.6.3
go: downloading go.opentelemetry.io/otel/trace v1.6.3
go: downloading golang.org/x/net v0.0.0-20220412020605-290c469a71a5
go: downloading github.com/tendermint/go-amino v0.16.0
go: downloading github.com/prometheus/common v0.32.1
go: downloading github.com/confio/ics23/go v0.7.0
go: downloading golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4
go: downloading github.com/go-logr/logr v1.2.3
go: downloading github.com/beorn7/perks v1.0.1
go: downloading github.com/cespare/xxhash/v2 v2.1.2
go: downloading github.com/prometheus/client_model v0.2.0
go: downloading github.com/prometheus/procfs v0.7.3
go: downloading github.com/gorilla/websocket v1.5.0
go: downloading github.com/hdevalence/ed25519consensus v0.0.0-20210204194344-59a8610d2b87
go: downloading github.com/btcsuite/btcd v0.22.0-beta
go: downloading github.com/99designs/keyring v1.1.6
go: downloading github.com/tendermint/crypto v0.0.0-20191022145703-50d29ede1e15
go: downloading github.com/coinbase/rosetta-sdk-go v0.7.0
go: downloading github.com/cosmos/iavl v0.17.3
go: downloading github.com/lib/pq v1.10.4
go: downloading github.com/rs/cors v1.8.2
go: downloading github.com/cespare/xxhash v1.1.0
go: downloading github.com/improbable-eng/grpc-web v0.14.1
go: downloading github.com/cosmos/btcutil v1.0.4
go: downloading github.com/go-kit/kit v0.12.0
go: downloading github.com/bgentry/speakeasy v0.1.0
go: downloading github.com/mattn/go-isatty v0.0.14
go: downloading github.com/cosmos/ledger-cosmos-go v0.11.1
go: downloading github.com/tendermint/btcd v0.1.1
go: downloading github.com/felixge/httpsnoop v1.0.1
go: downloading github.com/hashicorp/go-immutable-radix v1.3.1
go: downloading github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d
go: downloading github.com/davecgh/go-spew v1.1.1
go: downloading github.com/pmezard/go-difflib v1.0.0
go: downloading gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
go: downloading github.com/fsnotify/fsnotify v1.5.1
go: downloading github.com/mitchellh/mapstructure v1.4.3
go: downloading github.com/spf13/afero v1.8.2
go: downloading github.com/spf13/jwalterweatherman v1.1.0
go: downloading github.com/go-logr/stdr v1.2.2
go: downloading golang.org/x/sys v0.0.0-20220412211240-33da011f77ad
go: downloading github.com/golang/snappy v0.0.3
go: downloading github.com/Workiva/go-datastructures v1.0.53
go: downloading github.com/minio/highwayhash v1.0.2
go: downloading github.com/google/orderedcode v0.0.1
go: downloading github.com/gtank/merlin v0.1.1
go: downloading github.com/libp2p/go-buffer-pool v0.0.2
go: downloading github.com/dvsekhvalnov/jose2go v0.0.0-20200901110807-248326c1351b
go: downloading github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2
go: downloading github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c
go: downloading github.com/mitchellh/go-homedir v1.1.0
go: downloading github.com/mtibben/percent v0.2.1
go: downloading filippo.io/edwards25519 v1.0.0-beta.2
go: downloading github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0
go: downloading github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369
go: downloading github.com/cosmos/ledger-go v0.9.2
go: downloading github.com/gtank/ristretto255 v0.1.2
go: downloading github.com/subosito/gotenv v1.2.0
go: downloading github.com/hashicorp/hcl v1.0.0
go: downloading gopkg.in/ini.v1 v1.66.4
go: downloading github.com/magiconair/properties v1.8.6
go: downloading github.com/pelletier/go-toml v1.9.4
go: downloading golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
go: downloading github.com/mimoo/StrobeGo v0.0.0-20181016162300-f8f6d4d2b643
go: downloading golang.org/x/text v0.3.7
go: downloading nhooyr.io/websocket v1.8.6
go: downloading github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f
go: downloading github.com/zondax/hid v0.9.0
go: downloading github.com/klauspost/compress v1.13.6
name: sei
server_name: <appd>
version: 1.0.1beta
commit: 7eae422e9ab3db380c539731785221287ffca140
build_tags: netgo ledger,
go: go version go1.18.1 linux/amd64
build_deps:
- filippo.io/edwards25519@v1.0.0-beta.2
- github.com/99designs/keyring@v1.1.6
- github.com/ChainSafe/go-schnorrkel@v0.0.0-20200405005733-88cbf1b4c40d
- github.com/CosmWasm/wasmd@v0.27.0
- github.com/CosmWasm/wasmvm@v1.0.0
- github.com/Workiva/go-datastructures@v1.0.53
- github.com/armon/go-metrics@v0.3.10
- github.com/beorn7/perks@v1.0.1
- github.com/bgentry/speakeasy@v0.1.0
- github.com/btcsuite/btcd@v0.22.0-beta
- github.com/cespare/xxhash/v2@v2.1.2
- github.com/coinbase/rosetta-sdk-go@v0.7.0
- github.com/confio/ics23/go@v0.7.0
- github.com/cosmos/btcutil@v1.0.4 
- github.com/cosmos/cosmos-sdk@v0.45.4
- github.com/cosmos/go-bip39@v1.0.0
- github.com/cosmos/iavl@v0.17.3
- github.com/cosmos/ibc-go/v3@v3.0.0
- github.com/cosmos/ledger-cosmos-go@v0.11.1
- github.com/cosmos/ledger-go@v0.9.2
- github.com/davecgh/go-spew@v1.1.1
- github.com/desertbit/timer@v0.0.0-20180107155436-c41aec40b27f
- github.com/dvsekhvalnov/jose2go@v0.0.0-20200901110807-248326c1351b
- github.com/felixge/httpsnoop@v1.0.1
- github.com/fsnotify/fsnotify@v1.5.1
- github.com/go-kit/kit@v0.12.0
- github.com/go-kit/log@v0.2.0
- github.com/go-logfmt/logfmt@v0.5.1
- github.com/go-logr/logr@v1.2.3
- github.com/go-logr/stdr@v1.2.2
- github.com/godbus/dbus@v0.0.0-20190726142602-4481cbc300e2
- github.com/gogo/gateway@v1.1.0
- github.com/gogo/protobuf@v1.3.3 => github.com/regen-network/protobuf@v1.3.3-alpha.regen.1
- github.com/golang/protobuf@v1.5.2
- github.com/golang/snappy@v0.0.3
- github.com/google/btree@v1.0.1
- github.com/google/gofuzz@v1.2.0
- github.com/google/orderedcode@v0.0.1
- github.com/gorilla/handlers@v1.5.1
- github.com/gorilla/mux@v1.8.0
- github.com/gorilla/websocket@v1.5.0
- github.com/grpc-ecosystem/go-grpc-middleware@v1.3.0
- github.com/grpc-ecosystem/grpc-gateway@v1.16.0
- github.com/gsterjov/go-libsecret@v0.0.0-20161001094733-a6f4afe4910c 
- github.com/gtank/merlin@v0.1.1
- github.com/gtank/ristretto255@v0.1.2
- github.com/hashicorp/go-immutable-radix@v1.3.1
- github.com/hashicorp/golang-lru@v0.5.4
- github.com/hashicorp/hcl@v1.0.0
- github.com/hdevalence/ed25519consensus@v0.0.0-20210204194344-59a8610d2b87
- github.com/improbable-eng/grpc-web@v0.14.1
- github.com/klauspost/compress@v1.13.6
- github.com/lib/pq@v1.10.4
- github.com/libp2p/go-buffer-pool@v0.0.2
- github.com/magiconair/properties@v1.8.6
- github.com/mattn/go-isatty@v0.0.14
- github.com/matttproud/golang_protobuf_extensions@v1.0.2-0.20181231171920-c182affec369
- github.com/mimoo/StrobeGo@v0.0.0-20181016162300-f8f6d4d2b643
- github.com/minio/highwayhash@v1.0.2
- github.com/mitchellh/go-homedir@v1.1.0
- github.com/mitchellh/mapstructure@v1.4.3
- github.com/mtibben/percent@v0.2.1
- github.com/pelletier/go-toml@v1.9.4
- github.com/pkg/errors@v0.9.1
- github.com/pmezard/go-difflib@v1.0.0
- github.com/prometheus/client_golang@v1.12.1
- github.com/prometheus/client_model@v0.2.0
- github.com/prometheus/common@v0.32.1
- github.com/prometheus/procfs@v0.7.3
- github.com/rakyll/statik@v0.1.7
- github.com/rcrowley/go-metrics@v0.0.0-20200313005456-10cdbea86bc0
- github.com/regen-network/cosmos-proto@v0.3.1
- github.com/rs/cors@v1.8.2
- github.com/rs/zerolog@v1.26.0
- github.com/spf13/afero@v1.8.2
- github.com/spf13/cast@v1.4.1
- github.com/spf13/cobra@v1.4.0
- github.com/spf13/jwalterweatherman@v1.1.0
- github.com/spf13/pflag@v1.0.5
- github.com/spf13/viper@v1.11.0
- github.com/stretchr/testify@v1.7.1
- github.com/subosito/gotenv@v1.2.0
- github.com/syndtr/goleveldb@v1.0.1-0.20200815110645-5c35d600f0ca
- github.com/tendermint/btcd@v0.1.1
- github.com/tendermint/crypto@v0.0.0-20191022145703-50d29ede1e15
- github.com/tendermint/go-amino@v0.16.0
- github.com/tendermint/starport@v0.19.2
- github.com/tendermint/tendermint@v0.34.19
- github.com/tendermint/tm-db@v0.6.8-0.20220519162814-e24b96538a12
- github.com/zondax/hid@v0.9.0
- go.opentelemetry.io/otel@v1.6.3
- go.opentelemetry.io/otel/exporters/jaeger@v1.6.3
- go.opentelemetry.io/otel/sdk@v1.6.3
- go.opentelemetry.io/otel/trace@v1.6.3
- golang.org/x/crypto@v0.0.0-20220411220226-7b82a4e95df4
- golang.org/x/net@v0.0.0-20220412020605-290c469a71a5
- golang.org/x/sys@v0.0.0-20220412211240-33da011f77ad
- golang.org/x/term@v0.0.0-20210927222741-03fcf44c2211
- golang.org/x/text@v0.3.7
- google.golang.org/genproto@v0.0.0-20220407144326-9054f6ed7bac
- google.golang.org/grpc@v1.46.2 => google.golang.org/grpc@v1.33.2
- golang.org/x/text@v0.3.7                                                                                                                
- google.golang.org/genproto@v0.0.0-20220407144326-9054f6ed7bac                                                                           
- google.golang.org/grpc@v1.46.2 => google.golang.org/grpc@v1.33.2                                                                        
- google.golang.org/protobuf@v1.28.0                                                                                                      
- gopkg.in/ini.v1@v1.66.4                                                                                                                 
- gopkg.in/yaml.v2@v2.4.0
- gopkg.in/yaml.v3@v3.0.0-20210107192922-496545a6307b
- nhooyr.io/websocket@v1.8.6
cosmos_sdk_version: v0.45.4

Error: No such interface “org.freedesktop.DBus.Properties” on object at path /
Usage:
  seid keys add <name> [flags]

Flags:
      --account uint32           Account number for HD derivation
      --algo string              Key signing algorithm to generate keys for (default "secp256k1")
      --coin-type uint32         coin type number for HD derivation (default 118)
      --dry-run                  Perform action, but don't add key to local keystore
      --hd-path string           Manual HD Path derivation (overrides BIP44 config)
  -h, --help                     help for add
      --index uint32             Address index number for HD derivation
  -i, --interactive              Interactively prompt user for BIP39 passphrase and mnemonic
      --ledger                   Store a local reference to a private key on a Ledger device
      --multisig strings         List of key names stored in keyring to construct a public legacy multisig key
      --multisig-threshold int   K out of N required signatures. For use in conjunction with --multisig (default 1)
      --no-backup                Don't print out seed phrase (if others are watching the terminal)
      --nosort                   Keys passed to --multisig are taken in the order they're supplied
      --pubkey string            Parse a public key in JSON format and saves key info to <name> file.
      --recover                  Provide seed phrase to recover existing key instead of creating

Global Flags:
      --home string              The application home directory (default "/home/sei/.sei")
      --keyring-backend string   Select keyring's backend (os|file|test) (default "test")
      --keyring-dir string       The client Keyring directory; if omitted, the default 'home' directory will be used
      --log_format string        The logging format (json|plain) (default "plain")
      --log_level string         The logging level (trace|debug|info|warn|error|fatal|panic) (default "info")
      --output string            Output format (text|json) (default "text")
      --trace                    print out full stack trace on errors 

{"app_message":{"auth":{"accounts":[],"params":{"max_memo_characters":"256","sig_verify_cost_ed25519":"590","sig_verify_cost_secp256k1":"1
000","tx_sig_limit":"7","tx_size_cost_per_byte":"10"}},"bank":{"balances":[],"denom_metadata":[],"params":{"default_send_enabled":true,"se
nd_enabled":[]},"supply":[]},"capability":{"index":"1","owners":[]},"crisis":{"constant_fee":{"amount":"1000","denom":"stake"}},"dex":{"la
stEpoch":"0","longBookList":[],"params":{},"shortBookList":[],"twapList":[{"assetDenom":"luna","lastEpoch":"0","priceDenom":"stake","price
s":["105"],"twapPrice":"105"},{"assetDenom":"luna","lastEpoch":"0","priceDenom":"ust","prices":["105"],"twapPrice":"105"}]},"distribution"
:{"delegator_starting_infos":[],"delegator_withdraw_infos":[],"fee_pool":{"community_pool":[]},"outstanding_rewards":[],"params":{"base_pr
oposer_reward":"0.010000000000000000","bonus_proposer_reward":"0.040000000000000000","community_tax":"0.020000000000000000","withdraw_addr
_enabled":true},"previous_proposer":"","validator_accumulated_commissions":[],"validator_current_rewards":[],"validator_historical_rewards
":[],"validator_slash_events":[]},"epoch":{"epoch":{"current_epoch":"0","current_epoch_height":"0","current_epoch_start_time":"2022-06-03T
18:51:30.353179795Z","epoch_duration":"60s","genesis_time":"2022-06-03T18:51:30.353179795Z"},"params":{}},"evidence":{"evidence":[]},"feeg
rant":{"allowances":[]},"genutil":{"gen_txs":[]},"gov":{"deposit_params":{"max_deposit_period":"172800s","min_deposit":[{"amount":"1000000
0","denom":"stake"}]},"deposits":[],"proposals":[],"starting_proposal_id":"1","tally_params":{"quorum":"0.334000000000000000","threshold":
"0.500000000000000000","veto_threshold":"0.334000000000000000"},"votes":[],"voting_params":{"voting_period":"172800s"}},"ibc":{"channel_ge
nesis":{"ack_sequences":[],"acknowledgements":[],"channels":[],"commitments":[],"next_channel_sequence":"0","receipts":[],"recv_sequences"
:[],"send_sequences":[]},"client_genesis":{"clients":[],"clients_consensus":[],"clients_metadata":[],"create_localhost":false,"next_client
_sequence":"0","params":{"allowed_clients":["06-solomachine","07-tendermint"]}},"connection_genesis":{"client_connection_paths":[],"connec
tions":[],"next_connection_sequence":"0","params":{"max_expected_time_per_block":"30000000000"}}},"mint":{"minter":{"annual_provisions":"0
.000000000000000000","inflation":"0.130000000000000000"},"params":{"blocks_per_year":"6311520","goal_bonded":"0.670000000000000000","infla
tion_max":"0.200000000000000000","inflation_min":"0.070000000000000000","inflation_rate_change":"0.130000000000000000","mint_denom":"stake
"}},"params":null,"slashing":{"missed_blocks":[],"params":{"downtime_jail_duration":"600s","min_signed_per_window":"0.500000000000000000",
"signed_blocks_window":"100","slash_fraction_double_sign":"0.050000000000000000","slash_fraction_downtime":"0.010000000000000000"},"signin
g_infos":[]},"staking":{"delegations":[],"exported":false,"last_total_power":"0","last_validator_powers":[],"params":{"bond_denom":"stake"
,"historical_entries":10000,"max_entries":7,"max_validators":100,"unbonding_time":"1814400s"},"redelegations":[],"unbonding_delegations":[
],"validators":[]},"transfer":{"denom_traces":[],"params":{"receive_enabled":true,"send_enabled":true},"port_id":"transfer"},"upgrade":{},
"vesting":{},"wasm":{"codes":[],"contracts":[],"gen_msgs":[],"params":{"code_upload_access":{"address":"","permission":"Everybody"},"insta
ntiate_default_permission":"Everybody"},"sequences":[]}},"chain_id":"sei-testnet-1","gentxs_dir":"","moniker":"MONIKER","node_id":"16abcb4
5725d42e45f3731bc4ad0e1cfb5fe77b1"}
--2022-06-03 21:51:30--  https://github.com/sei-protocol/testnet/raw/main/sei-testnet-1/genesis.json
Resolving github.com (github.com)... 140.82.121.3
Connecting to github.com (github.com)|140.82.121.3|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/sei-protocol/testnet/main/sei-testnet-1/genesis.json [following]
--2022-06-03 21:51:30--  https://raw.githubusercontent.com/sei-protocol/testnet/main/sei-testnet-1/genesis.json
Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.109.133, 185.199.110.133, ...
Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 8959 (8,7K) [text/plain]
Saving to: ‘/home/sei/.sei/config/genesis.json’

/home/sei/.sei/config/genesis.json 100%[==============================================================>]   8,75K  --.-KB/s    in 0,002s  

2022-06-03 21:51:31 (4,85 MB/s) - ‘/home/sei/.sei/config/genesis.json’ saved [8959/8959]

--2022-06-03 21:51:31--  https://github.com/sei-protocol/testnet/raw/main/sei-testnet-1/addrbook.json
Resolving github.com (github.com)... 140.82.121.3
Connecting to github.com (github.com)|140.82.121.3|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/sei-protocol/testnet/main/sei-testnet-1/addrbook.json [following]
--2022-06-03 21:51:31--  https://raw.githubusercontent.com/sei-protocol/testnet/main/sei-testnet-1/addrbook.json
Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.110.133, 185.199.108.133, ...
Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 32885 (32K) [text/plain]
Saving to: ‘/home/sei/.sei/config/addrbook.json’

/home/sei/.sei/config/addrbook.jso 100%[==============================================================>]  32,11K  --.-KB/s    in 0,02s   

2022-06-03 21:51:32 (1,34 MB/s) - ‘/home/sei/.sei/config/addrbook.json’ saved [32885/32885]

[sudo] password for sei: 
-- Journal begins at Thu 2022-06-02 16:22:22 MSK. --
июн 03 20:54:59 rig01 seid[2971187]: 8:54PM INF Closing rpc listener listener={"Listener":{}}
июн 03 20:54:59 rig01 seid[2971187]: 8:54PM INF RPC HTTP server stopped err="accept tcp 127.0.0.1:26657: use of closed network connection"
 module=rpc-server
июн 03 20:54:59 rig01 seid[2971187]: 8:54PM ERR Stopped accept routine, as transport is closed module=p2p numPeers=0
июн 03 20:54:59 rig01 seid[2971187]: 8:54PM ERR Error serving server err="accept tcp 127.0.0.1:26657: use of closed network connection"
июн 03 20:54:59 rig01 seid[2971187]: 8:54PM INF RPC HTTP server stopped err="accept tcp [::]:1317: use of closed network connection" modul
e=api-server
июн 03 20:54:59 rig01 seid[2971187]: 8:54PM INF exiting...
июн 03 20:54:59 rig01 systemd[1]: seid.service: Deactivated successfully.
июн 03 20:54:59 rig01 systemd[1]: Stopped Sei-Network Node.
июн 03 20:54:59 rig01 systemd[1]: seid.service: Consumed 12min 16.178s CPU time.
июн 03 21:56:40 rig01 systemd[1]: Started Sei-Network Node.
июн 03 21:56:40 rig01 dbus-daemon[3030757]: [session uid=1012 pid=3030755] AppArmor D-Bus mediation is enabled
июн 03 21:56:40 rig01 dbus-daemon[3030757]: [session uid=1012 pid=3030755] Activating service name='org.freedesktop.secrets' requested by 
':1.0' (uid=1012 pid=3030742 comm="/home/sei/go/bin/seid start " label="unconfined")
июн 03 21:56:40 rig01 org.freedesktop.secrets[3030759]: GNOME_KEYRING_CONTROL=/home/sei/.cache/keyring-EYD6M1
июн 03 21:56:40 rig01 dbus-daemon[3030757]: [session uid=1012 pid=3030755] Successfully activated service 'org.freedesktop.secrets'
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF starting node with ABCI Tendermint in-process
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Starting multiAppConn service impl=multiAppConn module=proxy
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Starting localClient service connection=query impl=localClient module=abci-client
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Starting localClient service connection=snapshot impl=localClient module=abci-client
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Starting localClient service connection=mempool impl=localClient module=abci-client
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Starting localClient service connection=consensus impl=localClient module=abci-client
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Starting EventBus service impl=EventBus module=events
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Starting PubSub service impl=PubSub module=pubsub
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Starting IndexerService service impl=IndexerService module=txindex
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF ABCI Handshake App Info hash= height=0 module=consensus protocol-version=0 software-versio
n=1.0.1beta
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF ABCI Replay Blocks appHeight=0 module=consensus stateHeight=0 storeHeight=0
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF asserting crisis invariants inv=0/11 module=x/crisis name=gov/module-account
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF asserting crisis invariants inv=1/11 module=x/crisis name=distribution/nonnegative-outstan
ding
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF asserting crisis invariants inv=2/11 module=x/crisis name=distribution/can-withdraw
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF asserting crisis invariants inv=3/11 module=x/crisis name=distribution/reference-count
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF asserting crisis invariants inv=4/11 module=x/crisis name=distribution/module-account
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF asserting crisis invariants inv=5/11 module=x/crisis name=staking/module-accounts
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF asserting crisis invariants inv=6/11 module=x/crisis name=staking/nonnegative-power
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF asserting crisis invariants inv=7/11 module=x/crisis name=staking/positive-delegation
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF asserting crisis invariants inv=8/11 module=x/crisis name=staking/delegator-shares
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF asserting crisis invariants inv=9/11 module=x/crisis name=bank/nonnegative-outstanding
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF asserting crisis invariants inv=10/11 module=x/crisis name=bank/total-supply
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF asserted all invariants duration=0.751711 height=0 module=x/crisis
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF created new capability module=ibc name=ports/transfer
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF port binded module=x/ibc/port port=transfer
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF claimed capability capability=1 module=transfer name=ports/transfer
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Completed ABCI Handshake - Tendermint and App are synced appHash= appHeight=0 module=conse
nsus
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Version info block=11 p2p=8 tendermint_version=0.34.19
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF This node is not a validator addr=12463DBCFBCB84CB49A8F2A0157C7591ADC2BB66 module=consensu
s pubKey=iqRMDw1ZpZByIIf3vEhhbxx1XE7Ce1jOlQmV2PNhtKk=
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF P2P Node ID ID=16abcb45725d42e45f3731bc4ad0e1cfb5fe77b1 file=/home/sei/.sei/config/node_ke
y.json module=p2p
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Adding persistent peers addrs=[] module=p2p
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Adding unconditional peer ids ids=[] module=p2p
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Add our address to book addr={"id":"16abcb45725d42e45f3731bc4ad0e1cfb5fe77b1","ip":"0.0.0.
0","port":26656} book=/home/sei/.sei/config/addrbook.json module=p2p
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Starting Node service impl=Node
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Starting pprof server laddr=localhost:6060
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Starting P2P Switch service impl="P2P Switch" module=p2p
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Starting Evidence service impl=Evidence module=evidence
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Starting StateSync service impl=StateSync module=statesync
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Starting RPC HTTP server on 127.0.0.1:26657 module=rpc-server
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Starting AddrBook service book=/home/sei/.sei/config/addrbook.json impl=AddrBook module=p2
p
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Starting Mempool service impl=Mempool module=mempool
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Starting BlockchainReactor service impl=BlockchainReactor module=blockchain
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Ensure peers module=pex numDialing=0 numInPeers=0 numOutPeers=0 numToDial=10
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Dialing peer address={"id":"0abe6bdd398712068ac51683eee21e582c943c4f","ip":"167.86.117.19"
,"port":26656} module=p2p
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Dialing peer address={"id":"6f71bcbe347069fc4df9b607f6b843226e8deb71","ip":"95.217.221.201
","port":26656} module=p2p
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Dialing peer address={"id":"585727dac5df8f8662a8ff42052a9584a1f7ee95","ip":"165.22.25.77",
"port":26656} module=p2p
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Dialing peer address={"id":"00ef612399c0666d358962eca8d42302cf41a6db","ip":"206.189.99.206
","port":26656} module=p2p
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Dialing peer address={"id":"b7ee739dfe031ec272b523b06a8fb40c87c9182c","ip":"141.95.104.249
","port":26656} module=p2p
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Dialing peer address={"id":"2f2804434afda302c86eb89eca27503e49a8a260","ip":"65.21.131.215"
,"port":26696} module=p2p
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Dialing peer address={"id":"c15e446ec5e1b907c54717bb1892f4695ab301c3","ip":"20.122.13.131"
,"port":26656} module=p2p
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Dialing peer address={"id":"bab4849cf3918c37b04cd3714984d1765616a4b2","ip":"49.12.76.255",
"port":36656} module=p2p
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Dialing peer address={"id":"27aab76f983cd7c6558f1dfc50b919daaef14555","ip":"3.22.112.181",
"port":26656} module=p2p
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Starting BlockPool service impl=BlockPool module=blockchain
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Starting Consensus service impl=ConsensusReactor module=consensus
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Dialing peer address={"id":"4bf8aa7b80f4db8a6f2abf5d757c9cab5d3f4d85","ip":"188.40.98.169"
,"port":56656} module=p2p
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Reactor  module=consensus waitSync=true
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Saving AddrBook to file book=/home/sei/.sei/config/addrbook.json module=p2p size=34
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF starting API server... module=api-server
июн 03 21:56:40 rig01 seid[3030742]: 9:56PM INF Starting RPC HTTP server on [::]:1317 module=api-server
июн 03 21:56:41 rig01 seid[3030742]: 9:56PM INF Starting Peer service impl="Peer{MConn{95.217.221.201:26656} 6f71bcbe347069fc4df9b607f6b84
3226e8deb71 out}" module=p2p peer={"id":"6f71bcbe347069fc4df9b607f6b843226e8deb71","ip":"95.217.221.201","port":26656}
июн 03 21:56:41 rig01 seid[3030742]: 9:56PM INF Starting MConnection service impl=MConn{95.217.221.201:26656} module=p2p peer={"id":"6f71b
cbe347069fc4df9b607f6b843226e8deb71","ip":"95.217.221.201","port":26656}
июн 03 21:56:41 rig01 seid[3030742]: 9:56PM INF Added peer module=p2p peer={"Data":{},"Logger":{}}

Failed start full node log:

Started Sei-Network Node.                                                                                                                 
[session uid=1012 pid=3032256] AppArmor D-Bus mediation is enabled                                                                        
[session uid=1012 pid=3032256] Activating service name='org.freedesktop.secrets' requested by ':1.0' (uid=1012 pid=3032244 comm="/home/sei/go/bin/seid start " label="unconfined")                                                                                                  
GNOME_KEYRING_CONTROL=/home/sei/.cache/keyring-BFXUM1                                                                                     
[session uid=1012 pid=3032256] Successfully activated service 'org.freedesktop.secrets'                                  
9:57PM INF starting node with ABCI Tendermint in-process                                                                                  
9:57PM INF Starting multiAppConn service impl=multiAppConn module=proxy                                                                   
9:57PM INF Starting localClient service connection=query impl=localClient module=abci-client                         
9:57PM INF Starting localClient service connection=snapshot impl=localClient module=abci-client                   
9:57PM INF Starting localClient service connection=mempool impl=localClient module=abci-client                                  
9:57PM INF Starting localClient service connection=consensus impl=localClient module=abci-client                                          
9:57PM INF Starting EventBus service impl=EventBus module=events                                                                          
9:57PM INF Starting PubSub service impl=PubSub module=pubsub                                                                              
9:57PM INF Starting IndexerService service impl=IndexerService module=txindex                                          
9:57PM INF ABCI Handshake App Info hash="�zR�~�f�\x06��Dh��X��\x05��_����h����;" height=1 module=consensus protocol-version=0 software-ver
sion=1.0.1beta                                                                                                                            
9:57PM INF ABCI Replay Blocks appHeight=1 module=consensus stateHeight=1 storeHeight=2                                                    
9:57PM INF Replay last block using real app module=consensus                                                                              
Error: error during handshake: error on replay: wrong Block.Header.AppHash.  Expected EB7A529B7EBD668C068CF344688D8358DAC405A9BB5FB6CAC4F1
68DED0EFF73B, got 09EBC5080DB74B915DAD51FC14E6D283749618221AAAE6946C021C994EFCCE61                                                        
philipsu522 commented 1 year ago

Sorry for the late response - see https://github.com/sei-protocol/sei-chain/issues/490#issuecomment-1534909581