queue.sh 279 B

12345678910
  1. #!/bin/bash
  2. cd `dirname $0`
  3. ps -ef | grep queue:work | grep -v grep
  4. if [ $? -ne 0 ]
  5. then
  6. echo "Queue start listen....."
  7. nohup php artisan queue:work database --queue=default --timeout=60 --sleep=5 --tries=3 >> ./queue.log 2>&1 &
  8. else
  9. echo "Queue is listening....."
  10. fi