You want to see if worker is running it the background?
You could run PS which is all processes currently running if you have console access, and then grep that for artisan commands to get a shorter list
ps -aux | grep artisan
This output like this for my test:
root 25809 0.7 5.8 291520 29264 pts/0 S+ 08:59 0:00 php artisan queue:work rabbitmq --sleep=3 --daemon
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community