How to Kill a Rails PID Process
Rails -- or Ruby on Rails -- is a Web-programming framework that runs on Linux servers. If this process is not responding properly, or is using too many system resources, you can execute the "kill" command on its Process ID (PID) in the Linux terminal.
Instructions
-
-
1
Log in to your Linux server and open a Terminal from the system menu.
-
2
Type "ps aux | grep rails" and press "Enter." The result shown is the PID of the Rails application.
-
-
3
Type "kill pid_number" into the Terminal, where "pid_number" is the actual PID that you found in the last step.
-
4
Press "Enter" to kill the Rails' process.
-
1