I am using AmazonAWS server to run my application. To start the application I am using:
RACK_BASE_URI=/project bundle exec rackup -D
To stop the application I am using:
ps -ef|grep <port>
pkill <pid>
Even then the application is running. Can anyone tell me how to stop the application?