I'm not a server admin by any means...but run a few small apps and need to learn how things should work...
I start all my stuff manually; mostly rails with puma/thin.
When I reboot, I need to start my puma apps. What's the correct way to do this?
I'm not a server admin by any means...but run a few small apps and need to learn how things should work...
I start all my stuff manually; mostly rails with puma/thin.
When I reboot, I need to start my puma apps. What's the correct way to do this?
An application server is typically started as a system service. On RHEL 7 that would be with a systemd start-up script.
On previous RHEL versions that would have been by either including the start-up command in /etc/init.d/rc.local
or a traditional SystemV style init script.
I'm not familiar enough with Ruby to know if that community has alternative conventions.