Logs - Cloudbox/Cloudbox GitHub Wiki
Logs are stored in ~/logs
.
cat ~/logs/cloudbox_backup-<DATE>.log
tail -F ~/logs/cloudbox_backup-<DATE>.log
sudo systemctl status plex_autoscan.service
sudo systemctl restart plex_autoscan.service
cat /opt/plex_autoscan/plex_autoscan.log
Older logs are named as plex_autoscan.log.1, plex_autoscan.log.2, etc.
tail -F /opt/plex_autoscan/plex_autoscan.log
or
sudo journalctl -o cat -fu plex_autoscan.service
Sometimes, debug-level logging can be useful. To enable this, make this change in the service file and restart the service.
In this file: /etc/systemd/system/plex_autoscan.service
change the log level to "DEBUG":
...
WorkingDirectory=/opt/plex_autoscan/
ExecStart=/usr/bin/python3 /opt/plex_autoscan/scan.py server --loglevel=DEBUG <<<<< RIGHT THERE
Restart=always
...
You should only enable debug logging while you need it to track down a problem.
sudo systemctl status cloudplow.service
cat /opt/cloudplow/cloudplow.log
Older logs are named as cloudplow.log.1, cloudplow.log.2, etc.
tail -F /opt/cloudplow/cloudplow.log
or
sudo journalctl -o cat -fu cloudplow.service
Sometimes, debug-level logging can be useful. To enable this, make this change in the service file and restart the service.
In this file: /etc/systemd/system/cloudplow.service
, change the log level to "DEBUG":
...
WorkingDirectory=/opt/cloudplow/
ExecStart=/usr/bin/python3 /opt/cloudplow/cloudplow.py run --loglevel=DEBUG <<<<< RIGHT THERE
ExecStopPost=/bin/rm -rf /opt/cloudplow/locks
Restart=always
...
You should only enable debug logging while you need it to track down a problem.
Pick one of these.
sudo systemctl status rclone_vfs.service
sudo journalctl -o cat -fu rclone_vfs.service
sudo systemctl status rclone_cache.service
sudo journalctl -o cat -fu rclone_cache.service
sudo systemctl status plexdrive4.service
sudo journalctl -o cat -fu plexdrive4.service
sudo systemctl status plexdrive5.service
sudo journalctl -o cat -fu plexdrive5.service
Pick one of these.
sudo systemctl status mergerfs.service
sudo journalctl -o cat -fu mergerfs.service
sudo systemctl status unionfs.service
sudo journalctl -fu unionfs.service
Find the container name: docker ps -a
docker logs --follow <container_name>
docker logs --follow --tail 10 <container_name>
docker logs -f plex
Note: --follow
= -f
In addition to the above, you may use the following commands to display info about your existing certificates.
docker exec letsencrypt /app/cert_status
docker logs -f letsencrypt