| 1234567891011121314151617181920212223242526272829303132 |
- 1
- cd /www/wwwroot/baxiadminproject
- php artisan schedule:run >> /dev/null 2>&1
- cd /www/wwwroot/statistics_admin
- php artisan schedule:run >> /dev/null 2>&1
- 常驻进程:
- php /www/wwwroot/api/artisan queue:work --sleep=12
- sudo supervisorctl status
- test git
- 4、常用命令
- 启动服务 systemctl enable supervisord
- 查看是否启动 systemctl is-enabled supervisord
- 停止服务 systemctl stop supervisord
- 开启服务 systemctl start supervisord
- 服务状态 systemctl status supervisord
- 重载服务 systemctl reload supervisord
- 重启服务 systemctl restart supervisord
|