moonstream/nodes/deploy/ethereum/geth.service

20 wiersze
657 B
INI
Czysty Zwykły widok Historia

2021-09-22 10:29:00 +00:00
[Unit]
Description=Ethereum node Geth client
StartLimitIntervalSec=500
StartLimitBurst=5
2021-09-22 10:29:00 +00:00
After=network.target
[Service]
Restart=on-failure
2022-09-19 11:30:02 +00:00
RestartSec=10s
2021-11-13 14:29:38 +00:00
EnvironmentFile=/home/ubuntu/moonstream-secrets/app.env
2022-09-19 11:30:02 +00:00
ExecStart=/usr/bin/geth --syncmode snap --cache 4096 --datadir /mnt/disks/nodes/ethereum --txpool.globalslots 153600 --txpool.globalqueue 3072 --http --http.api eth,web3,txpool --http.addr "${AWS_LOCAL_IPV4}" --http.port 8545 --http.vhosts "*" --authrpc.jwtsecret /home/ubuntu/moonstream-secrets/jwt.hex
Type=simple
User=ubuntu
2022-02-08 14:37:45 +00:00
ExecStop=/bin/kill -s SIGINT -$MAINPID
2022-02-08 10:47:45 +00:00
TimeoutStopSec=180
SyslogIdentifier=geth
2021-09-22 10:29:00 +00:00
[Install]
2021-10-13 16:02:18 +00:00
WantedBy=multi-user.target