Skip to content
Chaz Larson edited this page Oct 26, 2021 · 37 revisions

Apps

Backups

Logs are stored in ~/logs.

Previous Backups:

cat ~/logs/cloudbox_backup-<DATE>.log

Current Backup:

tail -F ~/logs/cloudbox_backup-<DATE>.log

Plex Autoscan

Check Status:

sudo systemctl status plex_autoscan.service

Restart Service:

sudo systemctl restart plex_autoscan.service

Previous Activity:

cat /opt/plex_autoscan/plex_autoscan.log

Older logs are named as plex_autoscan.log.1, plex_autoscan.log.2, etc.

Live Log:

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.

Cloudplow

Check Status:

sudo systemctl status cloudplow.service

Previous Activity:

cat /opt/cloudplow/cloudplow.log

Older logs are named as cloudplow.log.1, cloudplow.log.2, etc.

Live Log:

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.

Remote Mount

Pick one of these.

Rclone VFS

Check Status:

sudo systemctl status rclone_vfs.service

See a live log:

sudo journalctl -o cat -fu rclone_vfs.service

Rclone Cache

Check Status:

sudo systemctl status rclone_cache.service

See a live log:

sudo journalctl -o cat -fu rclone_cache.service

Plexdrive 4

Check Status:

sudo systemctl status plexdrive4.service

See a live log:

sudo journalctl -o cat -fu plexdrive4.service

Plexdrive 5

Check Status:

sudo systemctl status plexdrive5.service

See a live log:

sudo journalctl -o cat -fu plexdrive5.service

Union Mount

Pick one of these.

MergerFS

Check Status:

sudo systemctl status mergerfs.service

See a live log:

sudo journalctl -o cat -fu mergerfs.service

UnionFS

Check Status:

sudo systemctl status unionfs.service

See a live log:

sudo journalctl -fu unionfs.service

Docker

Find the container name: docker ps -a

Live logs

Live log (from the beginning of the log):

docker logs --follow <container_name>

Live log (from the last 10 lines of the log):

docker logs --follow --tail 10 <container_name>

Examples:

docker logs -f plex

Note: --follow = -f

Let's Encrypt

In addition to the above, you may use the following commands to display info about your existing certificates.

Cert Status

docker exec letsencrypt /app/cert_status

Logs

docker logs -f letsencrypt

Basics

  1. Introduction
  2. Cloudbox Install Types
  3. Cloudbox Paths
  4. Accessing Cloudbox Apps

Prerequisites

  1. Overview
  2. Presumptions
  3. Server
  4. Domain Name
  5. Cloudflare
  6. Cloud Storage
  7. Plex / Emby - Account
  8. Usenet vs. BitTorrent

Install Cloudbox

Cloudbox
  1. Overview
  2. Dependencies (Choose only one of these)
  3. Settings
  4. Preinstall (Choose only one of these)
  5. SSH
  6. Ansible Vault
  7. Rclone
  8. Cloudbox (Choose only one of these)
  9. Application Setup
    1. NZBGet
    2. ruTorrent
    3. NZBHydra2
    4. Jackett
    5. Plex Media Server
    6. Plex Autoscan
    7. Sonarr
    8. Radarr
    9. Lidarr
    10. PlexPy (Tautulli)
    11. Ombi
    12. Portainer
    13. Organizr
  10. Next Steps

Install Feederbox / Mediabox

Feederbox (do this first)
  1. Overview
  2. Dependencies
  3. Settings
  4. Preinstall
  5. SSH
  6. Ansible Vault
  7. Rclone
  8. Feederbox (Choose only one of these)
  9. Application Setup
    1. NZBGet
    2. ruTorrent
    3. NZBHydra2
    4. Jackett
    5. Sonarr
    6. Radarr
    7. Lidarr
    8. Portainer
    9. Organizr
  10. Next Steps

Mediabox
  1. Overview
  2. Dependencies
  3. Settings
  4. Preinstall
  5. SSH
  6. Ansible Vault
  7. Rclone
  8. Mediabox (Choose only one of these)
  9. Application Setup
    1. Feeder Mount
    2. Plex Media Server
    3. Plex Autoscan
    4. PlexPy (Tautulli)
    5. Ombi
  10. Next Steps

Recommended Reading

Backup and Restore

More Information

Advanced Configuration

Experimental

Extras

Misc

Community-Submitted

See Community Wiki.

Reference

Troubleshooting

Links

Clone this wiki locally