muppie

Members
  • Posts

    52
  • Joined

  • Last visited

Posts posted by muppie

  1. 1 hour ago, ich777 said:

    Try to do:

    chown -R 99:100 /mnt/cache/appdata/photoprism

    from an Unraid terminal, of course stop the container first and change the path if it is different, after that try to start the container again and see if you get the error again (...and also remove the HOME variable).

    I tried that and that didn’t work either. However, now I get another error message: path lookup '/photoprism/.config/darktable' fails with: 'No such file or directory' ). Should I start over? It has been a bit problematic for me for some time so I think I can nuke it and start over.

  2. Hi!

     

    I updated to 6.10-rc2 and lost access to the webgui when I am on my VPN. Before the update and on my LAN, it works without question. I have made some searches but the posts that I have found are relating to people losing access to the gui locally after an update but not mine. I have removed the network settings on the flash drive and rebooted but no change. 

     

    Have someone else had similar problems and found a fix? I’m currently travelling so I don’t have access to the diagnostics unless they are retrievable from the ssh-ing in to the box. On a separate note, is there a possibility to enter the encryption password via ssh or is it webgui-only?

     

    Many thanks in advance for any assistance if possible.

     

    //M 

     

    Edit: It is like the connection is dropped, but there have been no changes in my network between 6.9.2 and 6.10-rc2. It works if I roll back to 6.9.2. rc2 stops letting me access unraid via IP, not it is only .local that works.

  3. Hi!

    I have looked around and can’t find this topic elsewhere. 

     

    I believe I have files belonging to the same folder spread across several drives, e.g. one nfo file belonging to a movie on disk1, the sample on disk2 and the movie on disk3. My movie collection is too big to fit on one drive so I don’t think I can use ”gather” in unbalance. Is there a way to output a file where the the folders and its contents are stored or do I need to find another way?

     

    Many thanks and sorry if this topic has been raised before and I haven’t been able to find it

     

    /M

  4. 11 hours ago, Crocs said:

    Check the screenshots above, do you have Redis and ES mapped to the correct volumes inside of the TubeArchivsit directory?

    I’ve filled out the redis IP and elasticsearch IP in the template and I’ve tried to review the screenshots again and to me they look the same. Attaching it here:

     

    I cannot spot any errors. If I add port to the redis IP it is duplicated in the logs (as IP:6379:6379) so I removed it.

    DCA796EC-E861-4C44-A1A2-D9266780E86B.jpeg

  5. I have http in front but I’m still getting a Internal Server Error.

     

    Do I have the wrong redis version? I don’t have any special for redis json.

    Logs here:

     

    Quote

    ErrorWarningSystemArrayLogin


    redis.exceptions.ResponseError: unknown command `JSON.GET`, with args beginning with: `config`,
    [uWSGI] getting INI configuration from uwsgi.ini
    *** Starting uWSGI 2.0.19.1 (64bit) on [Fri Sep 24 22:13:05 2021] ***
    compiled with version: 10.2.1 20210110 on 08 September 2021 09:13:02
    os: Linux-5.10.28-Unraid #1 SMP Wed Apr 7 08:23:18 PDT 2021
    nodename: 4742eae369e2
    machine: x86_64
    clock source: unix
    detected number of CPU cores: 8
    current working directory: /app
    writing pidfile to /tmp/project-master.pid
    detected binary path: /usr/local/bin/uwsgi
    !!! no internal routing support, rebuild with pcre support !!!
    uWSGI running as root, you can use --uid/--gid/--chroot options
    *** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
    your processes number limit is 191529
    your memory page size is 4096 bytes
    detected max file descriptor number: 40960
    lock engine: pthread robust mutexes
    thunder lock: disabled (you can enable it with --thunder-lock)
    uwsgi socket 0 bound to TCP address :8080 fd 3
    uWSGI running as root, you can use --uid/--gid/--chroot options
    *** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
    Python version: 3.9.7 (default, Sep 3 2021, 02:02:37) [GCC 10.2.1 20210110]
    *** Python threads support is disabled. You can enable it with --enable-threads ***
    Python main interpreter initialized at 0x557c139c7800
    uWSGI running as root, you can use --uid/--gid/--chroot options
    *** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
    your server socket listen backlog is limited to 100 connections
    your mercy for graceful operations on workers is 60 seconds
    mapped 145808 bytes (142 KB) for 1 cores
    *** Operational MODE: single process ***
    Traceback (most recent call last):
    File "/app/./config/wsgi.py", line 16, in <module>
    application = get_wsgi_application()
    File "/usr/local/lib/python3.9/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application
    django.setup(set_prefix=False)
    File "/usr/local/lib/python3.9/site-packages/django/__init__.py", line 24, in setup
    apps.populate(settings.INSTALLED_APPS)
    File "/usr/local/lib/python3.9/site-packages/django/apps/registry.py", line 91, in populate
    app_config = AppConfig.create(entry)
    File "/usr/local/lib/python3.9/site-packages/django/apps/config.py", line 212, in create
    mod = import_module(mod_path)
    File "/usr/local/lib/python3.9/importlib/__init__.py", line 127, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
    File "/app/./home/__init__.py", line 7, in <module>
    from home.src.index_management import index_check
    File "/app/./home/src/index_management.py", line 159, in <module>
    class ElasticIndex:
    File "/app/./home/src/index_management.py", line 164, in ElasticIndex
    CONFIG = AppConfig().config
    File "/app/./home/src/config.py", line 18, in __init__
    self.config = self.get_config()
    File "/app/./home/src/config.py", line 22, in get_config
    config = self.get_config_redis()
    File "/app/./home/src/config.py", line 54, in get_config_redis
    config = get_message("config")
    File "/app/./home/src/helper.py", line 80, in get_message
    reply = redis_connection.execute_command("JSON.GET", key)
    File "/usr/local/lib/python3.9/site-packages/redis/client.py", line 901, in execute_command
    return self.parse_response(conn, command_name, **options)
    File "/usr/local/lib/python3.9/site-packages/redis/client.py", line 915, in parse_response
    response = connection.read_response()
    File "/usr/local/lib/python3.9/site-packages/redis/connection.py", line 756, in read_response
    raise response
    redis.exceptions.ResponseError: unknown command `JSON.GET`, with args beginning with: `config`,
    unable to load app 0 (mountpoint='') (callable not found or import error)
    *** no app loaded. going in full dynamic mode ***
    uWSGI running as root, you can use --uid/--gid/--chroot options
    *** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
    *** uWSGI is running in multiple interpreter mode ***
    spawned uWSGI master process (pid: 13)
    spawned uWSGI worker 1 (pid: 23, cores: 1)
    Usage: celery [OPTIONS] COMMAND [ARGS]...

    Error: Invalid value for '-A' / '--app':
    Unable to load celery application.
    While trying to load the module home.tasks the following error occurred:
    Traceback (most recent call last):
    File "/usr/local/lib/python3.9/site-packages/celery/bin/celery.py", line 53, in convert
    return find_app(value)
    File "/usr/local/lib/python3.9/site-packages/celery/app/utils.py", line 384, in find_app
    sym = symbol_by_name(app, imp=imp)
    File "/usr/local/lib/python3.9/site-packages/kombu/utils/imports.py", line 56, in symbol_by_name
    module = imp(module_name, package=package, **kwargs)
    File "/usr/local/lib/python3.9/site-packages/celery/utils/imports.py", line 100, in import_from_cwd
    return imp(module, package=package)
    File "/usr/local/lib/python3.9/importlib/__init__.py", line 127, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
    File "<frozen importlib._bootstrap>", line 1030, in _gcd_import
    File "<frozen importlib._bootstrap>", line 1007, in _find_and_load
    File "<frozen importlib._bootstrap>", line 986, in _find_and_load_unlocked
    File "<frozen importlib._bootstrap>", line 680, in _load_unlocked
    File "<frozen importlib._bootstrap_external>", line 850, in exec_module
    File "<frozen importlib._bootstrap>", line 228, in _call_with_frames_removed
    File "/app/home/__init__.py", line 7, in <module>
    from home.src.index_management import index_check
    File "/app/home/src/index_management.py", line 159, in <module>
    class ElasticIndex:
    File "/app/home/src/index_management.py", line 164, in ElasticIndex
    CONFIG = AppConfig().config
    File "/app/home/src/config.py", line 18, in __init__
    self.config = self.get_config()
    File "/app/home/src/config.py", line 22, in get_config
    config = self.get_config_redis()
    File "/app/home/src/config.py", line 54, in get_config_redis
    config = get_message("config")
    File "/app/home/src/helper.py", line 80, in get_message
    reply = redis_connection.execute_command("JSON.GET", key)
    File "/usr/local/lib/python3.9/site-packages/redis/client.py", line 901, in execute_command
    return self.parse_response(conn, command_name, **options)
    File "/usr/local/lib/python3.9/site-packages/redis/client.py", line 915, in parse_response
    response = connection.read_response()
    File "/usr/local/lib/python3.9/site-packages/redis/connection.py", line 756, in read_response
    raise response
    redis.exceptions.ResponseError: unknown command `JSON.GET`, with args beginning with: `config`,

    --- no python application found, check your startup logs for errors ---
    [pid: 23|app: -1|req: -1/1] 10.0.8.2 () {40 vars in 650 bytes} [Fri Sep 24 20:13:09 2021] GET / => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0)
    --- no python application found, check your startup logs for errors ---
    [pid: 23|app: -1|req: -1/2] 10.0.8.2 () {40 vars in 650 bytes} [Fri Sep 24 20:13:11 2021] GET / => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0)
    {
    "name" : "87c285cb6eaf",
    "cluster_name" : "docker-cluster",
    "cluster_uuid" : "iaxRVLu4RTyqKTB-TN6A4Q",
    "version" : {
    "number" : "7.10.2",
    "build_flavor" : "default",
    "build_type" : "docker",
    "build_hash" : "747e1cc71def077253878a59143c1f785afa92b9",
    "build_date" : "2021-01-13T00:42:12.435326Z",
    "build_snapshot" : false,
    "lucene_version" : "8.7.0",
    "minimum_wire_compatibility_version" : "6.8.0",
    "minimum_index_compatibility_version" : "6.0.0-beta1"
    },
    "tagline" : "You Know, for Search"
    }
    Traceback (most recent call last):
    File "/app/manage.py", line 23, in <module>
    main()
    File "/app/manage.py", line 19, in main
    execute_from_command_line(sys.argv)
    File "/usr/local/lib/python3.9/site-packages/django/core/management/__init__.py", line 419, in execute_from_command_line
    utility.execute()
    File "/usr/local/lib/python3.9/site-packages/django/core/management/__init__.py", line 395, in execute
    django.setup()
    File "/usr/local/lib/python3.9/site-packages/django/__init__.py", line 24, in setup
    apps.populate(settings.INSTALLED_APPS)
    File "/usr/local/lib/python3.9/site-packages/django/apps/registry.py", line 91, in populate
    app_config = AppConfig.create(entry)
    File "/usr/local/lib/python3.9/site-packages/django/apps/config.py", line 212, in create
    mod = import_module(mod_path)
    File "/usr/local/lib/python3.9/importlib/__init__.py", line 127, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
    File "<frozen importlib._bootstrap>", line 1030, in _gcd_import
    File "<frozen importlib._bootstrap>", line 1007, in _find_and_load
    File "<frozen importlib._bootstrap>", line 972, in _find_and_load_unlocked
    File "<frozen importlib._bootstrap>", line 228, in _call_with_frames_removed
    File "<frozen importlib._bootstrap>", line 1030, in _gcd_import
    File "<frozen importlib._bootstrap>", line 1007, in _find_and_load
    File "<frozen importlib._bootstrap>", line 986, in _find_and_load_unlocked
    File "<frozen importlib._bootstrap>", line 680, in _load_unlocked
    File "<frozen importlib._bootstrap_external>", line 850, in exec_module
    File "<frozen importlib._bootstrap>", line 228, in _call_with_frames_removed
    File "/app/home/__init__.py", line 7, in <module>
    from home.src.index_management import index_check
    File "/app/home/src/index_management.py", line 159, in <module>
    class ElasticIndex:
    File "/app/home/src/index_management.py", line 164, in ElasticIndex
    CONFIG = AppConfig().config
    File "/app/home/src/config.py", line 18, in __init__
    self.config = self.get_config()
    File "/app/home/src/config.py", line 22, in get_config
    config = self.get_config_redis()
    File "/app/home/src/config.py", line 54, in get_config_redis
    config = get_message("config")
    File "/app/home/src/helper.py", line 80, in get_message
    reply = redis_connection.execute_command("JSON.GET", key)
    File "/usr/local/lib/python3.9/site-packages/redis/client.py", line 901, in execute_command
    return self.parse_response(conn, command_name, **options)
    File "/usr/local/lib/python3.9/site-packages/redis/client.py", line 915, in parse_response
    response = connection.read_response()
    File "/usr/local/lib/python3.9/site-packages/redis/connection.py", line 756, in read_response
    raise response
    redis.exceptions.ResponseError: unknown command `JSON.GET`, with args beginning with: `config`,
    Traceback (most recent call last):
    File "/app/manage.py", line 23, in <module>
    main()
    File "/app/manage.py", line 19, in main
    execute_from_command_line(sys.argv)
    File "/usr/local/lib/python3.9/site-packages/django/core/management/__init__.py", line 419, in execute_from_command_line
    utility.execute()
    File "/usr/local/lib/python3.9/site-packages/django/core/management/__init__.py", line 395, in execute
    django.setup()
    File "/usr/local/lib/python3.9/site-packages/django/__init__.py", line 24, in setup
    apps.populate(settings.INSTALLED_APPS)
    File "/usr/local/lib/python3.9/site-packages/django/apps/registry.py", line 91, in populate
    app_config = AppConfig.create(entry)
    File "/usr/local/lib/python3.9/site-packages/django/apps/config.py", line 212, in create
    mod = import_module(mod_path)
    File "/usr/local/lib/python3.9/importlib/__init__.py", line 127, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
    File "<frozen importlib._bootstrap>", line 1030, in _gcd_import
    File "<frozen importlib._bootstrap>", line 1007, in _find_and_load
    File "<frozen importlib._bootstrap>", line 972, in _find_and_load_unlocked
    File "<frozen importlib._bootstrap>", line 228, in _call_with_frames_removed
    File "<frozen importlib._bootstrap>", line 1030, in _gcd_import
    File "<frozen importlib._bootstrap>", line 1007, in _find_and_load
    File "<frozen importlib._bootstrap>", line 986, in _find_and_load_unlocked
    File "<frozen importlib._bootstrap>", line 680, in _load_unlocked
    File "<frozen importlib._bootstrap_external>", line 850, in exec_module
    File "<frozen importlib._bootstrap>", line 228, in _call_with_frames_removed
    File "/app/home/__init__.py", line 7, in <module>
    from home.src.index_management import index_check
    File "/app/home/src/index_management.py", line 159, in <module>
    class ElasticIndex:
    File "/app/home/src/index_management.py", line 164, in ElasticIndex
    CONFIG = AppConfig().config
    File "/app/home/src/config.py", line 18, in __init__
    self.config = self.get_config()
    File "/app/home/src/config.py", line 22, in get_config
    config = self.get_config_redis()
    File "/app/home/src/config.py", line 54, in get_config_redis
    config = get_message("config")
    File "/app/home/src/helper.py", line 80, in get_message
    reply = redis_connection.execute_command("JSON.GET", key)
    File "/usr/local/lib/python3.9/site-packages/redis/client.py", line 901, in execute_command
    return self.parse_response(conn, command_name, **options)
    File "/usr/local/lib/python3.9/site-packages/redis/client.py", line 915, in parse_response
    response = connection.read_response()
    File "/usr/local/lib/python3.9/site-packages/redis/connection.py", line 756, in read_response
    raise response
    redis.exceptions.ResponseError: unknown command `JSON.GET`, with args beginning with: `config`,
    [uWSGI] getting INI configuration from uwsgi.ini
    *** Starting uWSGI 2.0.19.1 (64bit) on [Sat Sep 25 19:34:29 2021] ***
    compiled with version: 10.2.1 20210110 on 08 September 2021 09:13:02
    os: Linux-5.10.28-Unraid #1 SMP Wed Apr 7 08:23:18 PDT 2021
    nodename: 4742eae369e2
    machine: x86_64
    clock source: unix
    detected number of CPU cores: 8
    current working directory: /app
    writing pidfile to /tmp/project-master.pid
    detected binary path: /usr/local/bin/uwsgi
    !!! no internal routing support, rebuild with pcre support !!!
    uWSGI running as root, you can use --uid/--gid/--chroot options
    *** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
    your processes number limit is 191529
    your memory page size is 4096 bytes
    detected max file descriptor number: 40960
    lock engine: pthread robust mutexes
    thunder lock: disabled (you can enable it with --thunder-lock)
    uwsgi socket 0 bound to TCP address :8080 fd 3
    uWSGI running as root, you can use --uid/--gid/--chroot options
    *** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
    Python version: 3.9.7 (default, Sep 3 2021, 02:02:37) [GCC 10.2.1 20210110]
    *** Python threads support is disabled. You can enable it with --enable-threads ***
    Python main interpreter initialized at 0x5615eec8f800
    uWSGI running as root, you can use --uid/--gid/--chroot options
    *** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
    your server socket listen backlog is limited to 100 connections
    your mercy for graceful operations on workers is 60 seconds
    mapped 145808 bytes (142 KB) for 1 cores
    *** Operational MODE: single process ***
    Traceback (most recent call last):
    File "/app/./config/wsgi.py", line 16, in <module>
    application = get_wsgi_application()
    File "/usr/local/lib/python3.9/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application
    django.setup(set_prefix=False)
    File "/usr/local/lib/python3.9/site-packages/django/__init__.py", line 24, in setup
    apps.populate(settings.INSTALLED_APPS)
    File "/usr/local/lib/python3.9/site-packages/django/apps/registry.py", line 91, in populate
    app_config = AppConfig.create(entry)
    File "/usr/local/lib/python3.9/site-packages/django/apps/config.py", line 212, in create
    mod = import_module(mod_path)
    File "/usr/local/lib/python3.9/importlib/__init__.py", line 127, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
    File "/app/./home/__init__.py", line 7, in <module>
    from home.src.index_management import index_check
    File "/app/./home/src/index_management.py", line 159, in <module>
    class ElasticIndex:
    File "/app/./home/src/index_management.py", line 164, in ElasticIndex
    CONFIG = AppConfig().config
    File "/app/./home/src/config.py", line 18, in __init__
    self.config = self.get_config()
    File "/app/./home/src/config.py", line 22, in get_config
    config = self.get_config_redis()
    File "/app/./home/src/config.py", line 54, in get_config_redis
    config = get_message("config")
    File "/app/./home/src/helper.py", line 80, in get_message
    reply = redis_connection.execute_command("JSON.GET", key)
    File "/usr/local/lib/python3.9/site-packages/redis/client.py", line 901, in execute_command
    return self.parse_response(conn, command_name, **options)
    File "/usr/local/lib/python3.9/site-packages/redis/client.py", line 915, in parse_response
    response = connection.read_response()
    File "/usr/local/lib/python3.9/site-packages/redis/connection.py", line 756, in read_response
    raise response
    redis.exceptions.ResponseError: unknown command `JSON.GET`, with args beginning with: `config`,
    unable to load app 0 (mountpoint='') (callable not found or import error)
    *** no app loaded. going in full dynamic mode ***
    uWSGI running as root, you can use --uid/--gid/--chroot options
    *** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
    *** uWSGI is running in multiple interpreter mode ***
    spawned uWSGI master process (pid: 12)
    spawned uWSGI worker 1 (pid: 22, cores: 1)
    Usage: celery [OPTIONS] COMMAND [ARGS]...

    Error: Invalid value for '-A' / '--app':
    Unable to load celery application.
    While trying to load the module home.tasks the following error occurred:
    Traceback (most recent call last):
    File "/usr/local/lib/python3.9/site-packages/celery/bin/celery.py", line 53, in convert
    return find_app(value)
    File "/usr/local/lib/python3.9/site-packages/celery/app/utils.py", line 384, in find_app
    sym = symbol_by_name(app, imp=imp)
    File "/usr/local/lib/python3.9/site-packages/kombu/utils/imports.py", line 56, in symbol_by_name
    module = imp(module_name, package=package, **kwargs)
    File "/usr/local/lib/python3.9/site-packages/celery/utils/imports.py", line 100, in import_from_cwd
    return imp(module, package=package)
    File "/usr/local/lib/python3.9/importlib/__init__.py", line 127, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
    File "<frozen importlib._bootstrap>", line 1030, in _gcd_import
    File "<frozen importlib._bootstrap>", line 1007, in _find_and_load
    File "<frozen importlib._bootstrap>", line 986, in _find_and_load_unlocked
    File "<frozen importlib._bootstrap>", line 680, in _load_unlocked
    File "<frozen importlib._bootstrap_external>", line 850, in exec_module
    File "<frozen importlib._bootstrap>", line 228, in _call_with_frames_removed
    File "/app/home/__init__.py", line 7, in <module>
    from home.src.index_management import index_check
    File "/app/home/src/index_management.py", line 159, in <module>
    class ElasticIndex:
    File "/app/home/src/index_management.py", line 164, in ElasticIndex
    CONFIG = AppConfig().config
    File "/app/home/src/config.py", line 18, in __init__
    self.config = self.get_config()
    File "/app/home/src/config.py", line 22, in get_config
    config = self.get_config_redis()
    File "/app/home/src/config.py", line 54, in get_config_redis
    config = get_message("config")
    File "/app/home/src/helper.py", line 80, in get_message
    reply = redis_connection.execute_command("JSON.GET", key)
    File "/usr/local/lib/python3.9/site-packages/redis/client.py", line 901, in execute_command
    return self.parse_response(conn, command_name, **options)
    File "/usr/local/lib/python3.9/site-packages/redis/client.py", line 915, in parse_response
    response = connection.read_response()
    File "/usr/local/lib/python3.9/site-packages/redis/connection.py", line 756, in read_response
    raise response
    redis.exceptions.ResponseError: unknown command `JSON.GET`, with args beginning with: `config`,

     

  6. Hi!

    I’ve recently begun noticing issues I’m not capable of diagnosing myself. I’ve had issues for some time regarding mover speed, cpu staying at 100% for unknown reasons etc. my logs state the following:

     

    Jul 19 13:21:52 server kernel: sd 10:0:2:0: attempting task abort!scmd(0x00000000c61bae8a), outstanding for 15140 ms & timeout 15000 ms
    Jul 19 13:21:52 server kernel: sd 10:0:2:0: [sdf] tag#2963 CDB: opcode=0x85 85 06 20 00 00 00 00 00 00 00 00 00 00 40 e5 00
    Jul 19 13:21:52 server kernel: scsi target10:0:2: handle(0x0010), sas_address(0x4433221101000000), phy(1)
    Jul 19 13:21:52 server kernel: scsi target10:0:2: enclosure logical id(0x500605b0080852a0), slot(2) 
    Jul 19 13:21:53 server kernel: sd 10:0:2:0: task abort: SUCCESS scmd(0x00000000c61bae8a)
    Jul 19 13:21:53 server kernel: sd 10:0:2:0: Power-on or device reset occurred

    Is there something wrong with sdf?

     

    Is there information missing from my post, like hardware, complete diagnostics etc?

     

    //M

  7. Hi!

     

    I’m trying to regularly update my nextcloud database since I’m using an inbox folder there to import files to Paperless-ng. Previously this script has worked in User Scripts:

     

    #!/bin/bash
    docker exec nextcloud sudo -u abc php /config/www/nextcloud occ files:scan -all

     

    The script has stopped working though. Can anyone see/tell me what is wrong with it? If I do the steps of the command separately it works, i.e. docker exec -it nextcloud /bin/bash then cd to nextcloud and then the sudo command.

     

    //M

  8. On 4/1/2021 at 1:02 PM, muppie said:

    Hi! 

    I rebooted my containers yesterday and after that my SWAG container won’t listed to the ports I’ve chosen. It worked flawlessly the days before that. I use 80/443 and they are portforwarded in my pfsense. I thought I mucked something up in pfsense so I’ve wiped it and started over, but no success. When I tried Nginx Proxy Manager, the port is suddenly open, even on the same LAN IP. As soon as I stop Nginx and start swag, the port is suddenly closed. I have other port forwards in pfsense set up and they work too.

     

    Swag is in br0.

     

    Does anyone have a clue what happened? I’m on the latest version of swag. I’ve forced updates and I wiped swag too but no successful. 

    There was nothing wrong with SWAG. I messed up my cloudflare settings which caused the error.

  9. 12 hours ago, randalotto said:

     

     

    I'm having the exact same issue. Here are the log entries from today:

     

    [2021-04-01 11:22:35,086] [INFO] [paperless.management.consumer] Adding /usr/src/paperless/src/../consume/scan04012021.pdf to the task queue.
    11:22:35 [Q] INFO Enqueued 1
     

    Then nothing happens.

    If you have the same redis connection refused message as @Geow, it doesn’t look like your connection to redis works. Have you checked that?

  10. Hi! 

    I rebooted my containers yesterday and after that my SWAG container won’t listed to the ports I’ve chosen. It worked flawlessly the days before that. I use 80/443 and they are portforwarded in my pfsense. I thought I mucked something up in pfsense so I’ve wiped it and started over, but no success. When I tried Nginx Proxy Manager, the port is suddenly open, even on the same LAN IP. As soon as I stop Nginx and start swag, the port is suddenly closed. I have other port forwards in pfsense set up and they work too.

     

    Swag is in br0.

     

    Does anyone have a clue what happened? I’m on the latest version of swag. I’ve forced updates and I wiped swag too but no successful. 

  11. 19 minutes ago, Lumpy_BD said:

    Yup that did it, thanks so much! they key was the upstream_app like you said... I did try it with the IP address but I had used the internal docker IP (172...) instead of my server's IP (192...). Thanks so much for your help, really appreciated!

    Great!

  12. 3 hours ago, Lumpy_BD said:

    @muppie would you by any chance mind sharing your conf file so I can compare?

    ## Version 2020/12/09
    # REMOVE THIS LINE BEFORE SUBMITTING: The structure of the file (all of the existing lines) should be kept as close as possible to this template.
    # REMOVE THIS LINE BEFORE SUBMITTING: Look through this file for <tags> and replace them. Review other sample files to see how things are done.
    # REMOVE THIS LINE BEFORE SUBMITTING: The comment lines at the top of the file (below this line) should explain any prerequisites for using the proxy such as DNS or app settings.
    # make sure that your dns has a cname set for <container_name> and that your <container_name> container is not using a base url
    
    server {
        listen 443 ssl;
        listen [::]:443 ssl;
    
        server_name paperless.*;
    
        include /config/nginx/ssl.conf;
    
        client_max_body_size 0;
    
        # enable for ldap auth, fill in ldap details in ldap.conf
        #include /config/nginx/ldap.conf;
    
        # enable for Authelia
        include /config/nginx/authelia-server.conf;
    
        #Organizr ServerAuth
        #include /config/nginx/proxy-confs/organizr-auth.subfolder.conf;
        #auth_request /auth-0;
    
        location / {
            # enable the next two lines for http auth
            #auth_basic "Restricted";
            #auth_basic_user_file /config/nginx/.htpasswd;
    
            # enable the next two lines for ldap auth
            #auth_request /auth;
            #error_page 401 =200 /ldaplogin;
    
            # enable for Authelia
            include /config/nginx/authelia-location.conf;
    
            include /config/nginx/proxy.conf;
            resolver 127.0.0.11 valid=30s;
            set $upstream_app 192.168.10.90;
            set $upstream_port 8000;
            set $upstream_proto http;
            proxy_pass $upstream_proto://$upstream_app:$upstream_port;
    
            # REMOVE THIS LINE BEFORE SUBMITTING: Additional proxy settings such as headers go below this line, leave the blank line above.
        }
    
    }

    Please note that I have Authelia enabled so comment those rows if you don’t use it too.

     

    Hope it helps!