Hello. I'm just starting to learn Ruby on Rails and I'm developing on a Mac. I'm new to both Mac and Linux and I find myself already struggling to use the commands I need to get things done. For example, I started the rails sever using the :> rails server -d
command and I couldn't figure out how to stop it. Ctrl-c, as mentioned in the tutorials, didn't work since it was a detached process using the -d switch. After searching google, I found the lsof|grep ruby
helped me locate the running process and kill -9 pid
stopped it. I've spent the last twelve years developing on Windows and I've never used or seen any of these linux commands before. It makes me nervous attempting to develop is such an unfamiliar environment. A bigger concern is not knowing my way around the server once the app is deployed and running and I have to start troubleshooting and fixing issues that arise.
I'm going to attempt to read up on linux and learn the OS better, but I wanted to ask up front which Linux commands should I become familiar with as I begin to learn Ruby on Rails?
Thanks so much in advance for your help!