Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 295 Bytes

geth-systemd-service.md

File metadata and controls

21 lines (15 loc) · 295 Bytes

GO ethereum client as a systemd service

[Unit]
Description=Ethereum go client

[Service]
Type=simple
ExecStart=geth 2>%h/.ethereum/geth.log

[Install]
WantedBy=default.target

Enable service

$ systemctl --user enable geth.service
$ systemctl --user start geth.service