[LINUX] Kill the frozen Rails local application server (Puma)

When developing with Rails, Puma may freeze and you may not be able to quit Puma with Ctrl + C. In such a case, solve it with the following command!

pkill -9 -f 'puma 4.3'

After hitting the above command, if the following is displayed on the terminal, the forced termination is successful.

Killed: 9

Recommended Posts

Kill the frozen Rails local application server (Puma)
The story of remounting the application server
[Ruby on Rails] From application creation to server startup & what is the port number?