0

I installed tendermint in ubuntu and gave the command tendermint node to run a single node blockchain. I usually close the cmd to kill the process. However I understand that is not the right way of doing it as I have to reset the blockchain everytime i want to continue using it. Please tell me what is the command to stop the node.

APS
  • 21
  • 1
  • 4

1 Answers1

2
  • Pressing CTRL-C (which will send SIGINT; sending a signal directly is also possible kill -2 <PID>)
  • Sending SIGTERM (kill -15 <PID>) to a process

will force Tendermint Core to shutdown gracefully

melekes
  • 1,880
  • 2
  • 24
  • 30