Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)TU
Posts
83
Comments
470
Joined
2 yr. ago

  • Thanks for the answer! On my desktop with the same account I'm able to torrent without any problems, I've done it for years, I don't think it's a problem

    I'll try to open the port and see if it works, thanks!

  • Yes I can ping it!

    Have you disabled the display manager?

    yep, I did `systemctl set-default multi-user.target'

    As someone eles mentioned, boot it with a screen and check the BIOS. Since this was a laptop, the BIOS is certainly expecting a display, so you might have to adjust something there.

    I already looked into the bios but it was pretty empty, just a few options, nothing about displays or graphics card

    but now I have a doubts, perhaps there is a "show advanced settings" button somewhere that I didn't see? I have to look for it

  • I actually use yd-dlp to download m3u8 playlists, but what I'm looking for is a way to extract the m3u8 file URL, so that I can give it to ytdlp to download the actual video

    I'll look into the extractor docs, seems interesting! Thanks!

  • please close that port 81 ASAP :-)

    yes I closed it XD

    Can you restart the container and the db (if using Mariadb and not sqlite) and try again exactly how you did it the first time?

    I rebooted the system and now I can't log in, it says bad gateway...

  • after hours I tried to change distribution and went with fedora, set up everything, installed immich, not a single problem, it all works, also duckdns, and now I also have btrfs so I can snapshot my system. I'm probably very unlucky with debian based distributions, on my main laptop I had many problems with ubuntu as first distro, I had to distro hop a bit to find my place in EndeavourOS

    thank you very very very very much for your time and help, I really appreciate this! now it's time to actually start this journey in the magic world of self-hosting!

  • Maybe show us you docker-compose to have a look on how you configured immich’s network?

    I didn't change anything, just followed the instructions on the wiki:

     
        
    version: "3.8"
    
    #
    # WARNING: Make sure to use the docker-compose.yml of the current release:
    #
    # https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml
    #
    # The compose file on main may not be compatible with the latest release.
    #
    
    name: immich
    
    services:
    immich-server:
    container_name: immich_server
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
    command: [ "start.sh", "immich" ]
    volumes:
    - ${UPLOAD_LOCATION}:/usr/src/app/upload
    - /etc/localtime:/etc/localtime:ro
    env_file:
    - .env
    ports:
    - 2283:3001
    depends_on:
    - redis
    - database
    restart: always
    
    immich-microservices:
    container_name: immich_microservices
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
    # extends:
    #   file: hwaccel.yml
    #   service: hwaccel
    command: [ "start.sh", "microservices" ]
    volumes:
    - ${UPLOAD_LOCATION}:/usr/src/app/upload
    - /etc/localtime:/etc/localtime:ro
    env_file:
    - .env
    depends_on:
    - redis
    - database
    restart: always
    
    immich-machine-learning:
    container_name: immich_machine_learning
    image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
    volumes:
    - model-cache:/cache
    env_file:
    - .env
    restart: always
    
    redis:
    container_name: immich_redis
    image: redis:6.2-alpine@sha256:c5a607fb6e1bb15d32bbcf14db22787d19e428d59e31a5da67511b49bb0f1ccc
    restart: always
    
    database:
    container_name: immich_postgres
    image: tensorchord/pgvecto-rs:pg14-v0.1.11@sha256:0335a1a22f8c5dd1b697f14f079934f5152eaaa216c09b61e293be285491f8ee
    env_file:
    - .env
    environment:
    POSTGRES_PASSWORD: ${DB_PASSWORD}
    POSTGRES_USER: ${DB_USERNAME}
    POSTGRES_DB: ${DB_DATABASE_NAME}
    volumes:
    - pgdata:/var/lib/postgresql/data
    restart: always
    
    volumes:
    pgdata:
    model-cache:
    
      

    The easiest way i can think on how to make your docker-compose work is to reinstall docker and use the host network

    I'll try as soon as I can and post here the results, thanks for the time and help!

    This seems a badly network configuration on you docker stack !

    oops, I have lots to learn I guess XD

  • I haven't set up a firewall yet, I wanted first to make sure that everything works before installing one (I was thinking of ufw)

    I have a clean Debian install, I don't know if there are some rules OOTB that can interfere...

  • okay, I thought to have solved the problem but I was wrong, here I go again. When I docker compose up -d the immich server (the only one I have installed) all those routes are created, and apparently some of them conflicts with something else and now my host has no internet connection. however it seems that ip route flush 0/0 solves the problem until the reboot, which is strange. the other command returns RTNETLINK answers: File exists