1

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?

ewwhite
  • 197,159
  • 92
  • 443
  • 809
Kevin Brown
  • 263
  • 2
  • 13

1 Answers1

2

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.

HBruijn
  • 77,029
  • 24
  • 135
  • 201