Can't stop rails server

前端 未结 27 2263
别跟我提以往
别跟我提以往 2020-12-04 05:12

I am new to rails and I am using an ubuntu machine and the rubymine IDE. The problem is that I am unable to stop the rails server. I tried to stop the server by killing the

27条回答
  •  孤街浪徒
    2020-12-04 05:32

    1. Just open the file using the location given sudo vi /Users/user1/go/src/github.com/rails_app/rails_project/tmp/pids/server.pid

    2. find the process_id / thread_id at which the process is runnning.

    3. Kill the specified process / thread using kill -9 84699

提交回复
热议问题