Fix: Upload otto.log

deric main image with manifest digest sha256:95ddee2572fa646db8aa5797ae3d9eabb21dd67c52cf7126dd3de0172d616760 did contain a wrong disk configuration, which resulted in misplacing otto.log files in a wrong subdirectory and failing upload jobs.

Connect with ssh to the instance and execute the following commands.

circle-info

It could be necessary to execute the commands with root priviliges. Add sudo in front to do so.

List

You can see all misplaced files with:

docker compose exec deric ls -la storage/app/private/eric

And count all failed jobs using:

docker compose exec deric php artisan tinker --execute "echo DB::table('failed_jobs')->count()"

Or list all failed jobs using:

docker compose exec deric php artisan queue:failed

Or see them in Horizon UI, navigating to https://{host}/horizon/failedarrow-up-right (adjust {host} accordingly)

Copy files

To copy all misplaced files run:

docker compose exec deric cp -r storage/app/private/eric/ storage/app/

Retry

To retry all failed jobs run:

Last updated