加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
think-queue.sh 2.64 KB
一键复制 编辑 原始数据 按行查看 历史
依然灬如故 提交于 2022-01-25 13:30 . 同步代码
#!/bin/bash
#队列名称 空格隔开
queue_list="topOneShop topShopCallback topShopCallback1 topShopCallback2 topShopCallback3 topShopCallback4 topShopCallback5 topShopCallback6 topShopCallback7 topShopCallback8 topShopCallback9"
#循环加入supervisor守护进程
for i in $queue_list;
do
cat>/opt/docker/etc/supervisor.d/$i.conf<<EOF
[group:syslog]
programs=$i
priority=10
[program:$i]
directory = /usr/share/nginx/html
command = php think queue:listen --queue $i
process_name=%(program_name)s
autostart = true
autorestart = true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
EOF
echo ""
done
#更新supervisor守护进程
supervisorctl update
#添加crontab定时任务
( crontab -l | grep -v "* * * * * php /usr/share/nginx/html/public/index.php b2c/crontab/cancle
* * * * * php /usr/share/nginx/html/public/index.php gyl/goods/syncStock
* * * * * php /usr/share/nginx/html/public/index.php gyl/goods/getProductCostPrice
0 */1 * * * php /usr/share/nginx/html/public/index.php b2c/crontab/sign
0 */1 * * * php /usr/share/nginx/html/public/index.php b2c/crontab/evaluate
0 0 */1 * * php /usr/share/nginx/html/public/index.php b2c/crontab/price_maintenance
59 23 * * * php /usr/share/nginx/html/public/index.php b2c/crontab/balanceLog
0 0 */1 * * php /usr/share/nginx/html/public/index.php b2c/crontab/delPointCart
0 4 * * * php /usr/share/nginx/html/public/index.php b2c/crontab/pagesGoodsScan"; echo "* * * * * php /usr/share/nginx/html/public/index.php b2c/crontab/cancle
* * * * * php /usr/share/nginx/html/public/index.php gyl/goods/syncStock
* * * * * php /usr/share/nginx/html/public/index.php gyl/goods/getProductCostPrice
0 */1 * * * php /usr/share/nginx/html/public/index.php b2c/crontab/sign
0 */1 * * * php /usr/share/nginx/html/public/index.php b2c/crontab/evaluate
0 0 */1 * * php /usr/share/nginx/html/public/index.php b2c/crontab/price_maintenance
59 23 * * * php /usr/share/nginx/html/public/index.php b2c/crontab/balanceLog
0 0 */1 * * php /usr/share/nginx/html/public/index.php b2c/crontab/delPointCart
0 4 * * * php /usr/share/nginx/html/public/index.php b2c/crontab/pagesGoodsScan" ) | crontab -
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化