I am trying with putty below command and its working
php artisan horizon
But if I close ssh (putty) this command automatically shut down. with & command working in the background until I close putty.
php artisan horizon &
I want to run this command always in the background.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
You need to use nohup
utility to make it live after logging out.
nohup exec php artisan horizon
Please Follow this documentation you need Supervisor Configuration
And this Tutorial Install Supervisor on Digitalocean