Can't stop rails server

前端 未结 27 2160
别跟我提以往
别跟我提以往 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:26

    One super easy way would be

    gem install shutup

    then go in the current folder of your rails project and run

    shutup # this will kill the Rails process currently running

    You can use the command 'shutup' every time you want

    DICLAIMER: I am the creator of this gem

    NOTE: if you are using rvm install the gem globally

    rvm @global do gem install shutup
    

提交回复
热议问题