Latest Release 24 (24.04.7.1.1) issue

Hi I updated my collab (via Docker) today to the latest version and the connections isn’t working anymore. I rolled back to 24.04.6.2.1 now, container restarted, and it’s back w/o issues. Can someone check please what needs to be changed or let me know where to find the essential changes to make the latest release work? :slight_smile: Thanks

The error I’m getting in my NC Admin Settings is

ConnectException
cURL error 28: Operation timed out after 5000 milliseconds with 0 bytes received (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://myhosturl/hosting/discovery
Failed to fetch discovery: cURL error 28: Operation timed out after 5000 milliseconds with 0 bytes received (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://myhosturl/hosting/discovery

I’m not sure if it’s related to this one as well. Updated Collabora, container starts but later stops - 📄 Collabora - Nextcloud community

1 Like

Hello @MarslMarcello, and welcome to the Collabora Online forums!

It looks like you’re encountering a timeout issue with cURL. This could be due to a slow internet connection or an issue with the server’s uplink.

I found a similar problem discussed elsewhere, which might help you resolve this. You can check out the discussion here: Nextcloud Help Forum. It covers steps to increase the connection timeout, which may help address your issue.

Thanks,
Darshan

Hello, I’m having the same issue. It’s not a nextcloud issue because I cannot access collabora outside of it like I had previously been able to get an ‘ok’


likewise the troubleshooting curl just hangs. My collabora server had been running just fine, (@wwe had helped me get it running over on the nextcloud forum New AiO installation behind caddy and tailscale, Collabora not connecting? - #11 by rinkfaraway - 📦 Appliances (Docker, Snappy, VM, NCP, AIO) - Nextcloud community) but I ran a docker-compose pull to show someone how easy it is updating containers and wouldn’t you know it, broke something (they were unimpressed, womp).
Collabora version: collabora/code:latest (digest sha256:9dd9c535937ff066656d4ee1735e7abcf4e35574b43ab5b4635cec849153dc3f)
Nextcloud version: Nextcloud Hub 8 (29.0.4) AIO v9.4.1
Operating system and version: 6.10.2-arch1-1 (64-bit)
Caddy version: latest --with github.com/tailscale/caddy-tailscale

Docker-compose:

configs:
  Caddyfile:
    content: |
      {
        tailscale {
          state_dir /tailscale
        }
      }
      https://nextcloud.wallaby-gopher.ts.net {
        bind tailscale/nextcloud
        reverse_proxy host.docker.internal:11000
        }
      https://collabora.wallaby-gopher.ts.net {
        bind tailscale/collabora
        reverse_proxy collabora:9980
        }

volumes:
  nextcloud_aio_mastercontainer:
    name: nextcloud_aio_mastercontainer # This line is not allowed to be changed
  #caddy/tailscale configs
  caddy:
  tailscale:
services:
    caddy:
    build:
        dockerfile_inline: |
          FROM caddy:2-builder AS builder
          RUN xcaddy build latest \
            --with github.com/tailscale/caddy-tailscale
          FROM caddy:2
          COPY --from=builder /usr/bin/caddy /usr/bin/caddy
    hostname: caddy
    container_name: "caddy"
    extra_hosts:
      - "host.docker.internal:host-gateway"
    ports:
      - "80:80"
      - "443:443"
      - "443:443/udp"
    volumes:
      - caddy:/data
      - tailscale:/tailscale
    configs:
      - source: Caddyfile
        target: /etc/caddy/Caddyfile
    restart: unless-stopped


  #nextcloud
  nextcloud:
    image: nextcloud/all-in-one
    restart: always
    container_name: nextcloud-aio-mastercontainer # This line is not allowed to be changed as otherwise AIO will not work correctly
    volumes:
      - nextcloud_aio_mastercontainer:/mnt/docker-aio-config # This line is not allowed to be changed as otherwise the built-in backup solution will not work
      - /var/run/docker.sock:/var/run/docker.sock:ro # May be changed on macOS, Windows or docker rootless. See the applicable documentation. If adjusting, don't forget to also set 'WATCHTOWER_DOCKER_SOCKET_PATH'!
    ports:
      - 8080:8080
    environment: # Is needed when using any of the options below
      # - AIO_DISABLE_BACKUP_SECTION=false # Setting this to true allows to hide the backup section in the AIO interface. See https://github.com/nextcloud/all-in-one#how-to-disable-the-backup-section
      #- SKIP_DOMAIN_VALIDATION=true #might not be helping?
      - APACHE_PORT=11000 # Is needed when running behind a web server or reverse proxy (like Apache, Nginx, Cloudflare Tunnel and else). See https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md
      - APACHE_IP_BINDING=0.0.0.0 # Should be set when running behind a web server or reverse proxy (like Apache, Nginx, Cloudflare Tunnel and else) that is running on the same host. See https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md
      # - BORG_RETENTION_POLICY=--keep-within=7d --keep-weekly=4 --keep-monthly=6 # Allows to adjust borgs retention policy. See https://github.com/nextcloud/all-in-one#how-to-adjust-borgs-retention-policy
      # - COLLABORA_SECCOMP_DISABLED=false # Setting this to true allows to disable Collabora's Seccomp feature. See https://github.com/nextcloud/all-in-one#how-to-disable-collaboras-seccomp-feature
      # - NEXTCLOUD_MOUNT=/mnt/ # Allows the Nextcloud container to access the chosen directory on the host. See https://github.com/nextcloud/all-in-one#how-to-allow-the-nextcloud-container-to-access-directories-on-the-host
      - NEXTCLOUD_UPLOAD_LIMIT=1G # Can be adjusted if you need more. See https://github.com/nextcloud/all-in-one#how-to-adjust-the-upload-limit-for-nextcloud
      - NEXTCLOUD_MAX_TIME=3600 # Can be adjusted if you need more. See https://github.com/nextcloud/all-in-one#how-to-adjust-the-max-execution-time-for-nextcloud
      - NEXTCLOUD_MEMORY_LIMIT=1024M # Can be adjusted if you need more. See https://github.com/nextcloud/all-in-one#how-to-adjust-the-php-memory-limit-for-nextcloud
      # - NEXTCLOUD_TRUSTED_CACERTS_DIR=/path/to/my/cacerts # CA certificates in this directory will be trusted by the OS of the nexcloud container (Useful e.g. for LDAPS) See See https://github.com/nextcloud/all-in-one#how-to-trust-user-defined-certification-authorities-ca
      # - NEXTCLOUD_ADDITIONAL_APKS=imagemagick # This allows to add additional packages to the Nextcloud container permanently. Default is imagemagick but can be overwritten by modifying this value. See https://github.com/nextcloud/all-in-one#how-to-add-os-packages-permanently-to-the-nextcloud-container
      # - NEXTCLOUD_ADDITIONAL_PHP_EXTENSIONS=imagick # This allows to add additional php extensions to the Nextcloud container permanently. Default is imagick but can be overwritten by modifying this value. See https://github.com/nextcloud/all-in-one#how-to-add-php-extensions-permanently-to-the-nextcloud-container
      # - NEXTCLOUD_ENABLE_DRI_DEVICE=true # This allows to enable the /dev/dri device in the Nextcloud container. ⚠️⚠️⚠️ Warning: this only works if the '/dev/dri' device is present on the host! If it should not exist on your host, don't set this to true as otherwise the Nextcloud container will fail to start! See https://github.com/nextcloud/all-in-one#how-to-enable-hardware-transcoding-for-nextcloud
      - TALK_PORT=3478 # This allows to adjust the port that the talk container is using. See https://github.com/nextcloud/all-in-one#how-to-adjust-the-talk-port
      # - WATCHTOWER_DOCKER_SOCKET_PATH=/var/run/docker.sock # Needs to be specified if the docker socket on the host is not located in the default '/var/run/docker.sock'. Otherwise mastercontainer updates will fail. For macos it needs to be '/var/run/docker.sock'
    depends_on:
      - caddy

  #for nextcloud office to work
  collabora:
    image: collabora/code
    container_name: collaborac
    restart: unless-stopped
    ports:
      - 9980:9980
    environment:
      - username=admin
      - password=Secret.Password
      - extra_params=--o:ssl.enable=false --o:ssl.termination=true
      #- dictionaries=en
    cap_add:
      - MKNOD
    #tty: true
    depends_on:
      - nextcloud

Steps to reproduce:
I went for a full nextcloud/collabora purge by

docker-compose down
docker image prune
docker container prune
docker-compose up -d 

the new containers/images suffer the same issue, no connection.

collabora logs (those same errors were happening when collabora was working fine):

wsd-00001-00001 2024-09-02 15:53:18.587455 +0000 [ coolwsd ] DBG  New SocketPoll [admin] owned by 0x79fc6d933840| net/Socket.cpp:244

wsd-00001-00001 2024-09-02 15:53:18.587481 +0000 [ coolwsd ] INF  AdminModel ctor.| wsd/AdminModel.hpp:350

wsd-00001-00001 2024-09-02 15:53:18.587483 +0000 [ coolwsd ] INF  Admin ctor| wsd/Admin.cpp:524

wsd-00001-00001 2024-09-02 15:53:18.587484 +0000 [ coolwsd ] TRC  Total system memory:  65755856 KB| wsd/Admin.cpp:526

wsd-00001-00001 2024-09-02 15:53:18.587496 +0000 [ coolwsd ] TRC  control group path for memory is | common/Util-desktop.cpp:183

wsd-00001-00001 2024-09-02 15:53:18.587500 +0000 [ coolwsd ] TRC  no cgroup memory limit| wsd/Admin.cpp:536

wsd-00001-00001 2024-09-02 15:53:18.587508 +0000 [ coolwsd ] TRC  control group path for memory is | common/Util-desktop.cpp:183

wsd-00001-00001 2024-09-02 15:53:18.587510 +0000 [ coolwsd ] TRC  no cgroup memory soft limit| wsd/Admin.cpp:546

wsd-00001-00001 2024-09-02 15:53:18.588238 +0000 [ coolwsd ] INF  Total available memory: 52604685 KB (50 GB), System memory: 65755856 KB (63 GB), cgroup limit: 0 KB, cgroup soft-limit: 0 KB, configured memproportion: 80%, actual percentage of system total: 80%, current usage: 65276 KB (0.12% of limit)| wsd/Admin.cpp:572

wsd-00001-00001 2024-09-02 15:53:18.588259 +0000 [ coolwsd ] INF  hardware threads: 20| wsd/Admin.cpp:587

wsd-00001-00001 2024-09-02 15:53:18.588273 +0000 [ coolwsd ] TRC  Initialize StorageBase| wsd/COOLWSD.cpp:2964

wsd-00001-00001 2024-09-02 15:53:18.589218 +0000 [ coolwsd ] TRC  Comparing smaps_rollup read and rewind+read: 52432 vs 52432| wsd/COOLWSD.cpp:2975

wsd-00001-00001 2024-09-02 15:53:18.589266 +0000 [ coolwsd ] INF  Coolwsd version details: 24.04.7.1 - 61cf2b4 - id 3c3fc046 - on Debian GNU/Linux 12 (bookworm)| wsd/COOLWSD.cpp:4333

wsd-00001-00001 2024-09-02 15:53:18.589328 +0000 [ coolwsd ] DBG  New SocketPoll [remoteconfig_poll] owned by 0x79fc6d933840| net/Socket.cpp:244

wsd-00001-00001 2024-09-02 15:53:18.589335 +0000 [ coolwsd ] INF  Remote configuration is not specified in coolwsd.xml| wsd/COOLWSD.cpp:1125

wsd-00001-00001 2024-09-02 15:53:18.589495 +0000 [ coolwsd ] INF  Locale is set to C.UTF-8| wsd/COOLWSD.cpp:4360

wsd-00001-00001 2024-09-02 15:53:18.589503 +0000 [ coolwsd ] DBG  FileServerRoot: /usr/share/coolwsd| wsd/COOLWSD.cpp:4379

wsd-00001-00001 2024-09-02 15:53:18.589506 +0000 [ coolwsd ] DBG  Initializing DelaySocket with 0ms.| wsd/COOLWSD.cpp:4381

wsd-00001-00001 2024-09-02 15:53:18.589531 +0000 [ coolwsd ] DBG  Processing discovery.xml from /usr/share/coolwsd/discovery.xml| wsd/ClientRequestDispatcher.cpp:1924

wsd-00001-00001 2024-09-02 15:53:18.589987 +0000 [ coolwsd ] DBG  Enabling editing of [odt] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.589996 +0000 [ coolwsd ] DBG  Enabling editing of [fodt] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590013 +0000 [ coolwsd ] DBG  Enabling editing of [doc] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590024 +0000 [ coolwsd ] DBG  Enabling editing of [docx] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590030 +0000 [ coolwsd ] DBG  Enabling editing of [docm] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590087 +0000 [ coolwsd ] DBG  Enabling editing of [rtf] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590096 +0000 [ coolwsd ] DBG  Enabling editing of [txt] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590132 +0000 [ coolwsd ] DBG  Enabling editing of [odm] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590146 +0000 [ coolwsd ] DBG  Enabling editing of [oth] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590158 +0000 [ coolwsd ] DBG  Enabling editing of [ods] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590166 +0000 [ coolwsd ] DBG  Enabling editing of [fods] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590190 +0000 [ coolwsd ] DBG  Enabling editing of [xls] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590199 +0000 [ coolwsd ] DBG  Enabling editing of [xla] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590216 +0000 [ coolwsd ] DBG  Enabling editing of [xlsx] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590224 +0000 [ coolwsd ] DBG  Enabling editing of [xlsb] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590233 +0000 [ coolwsd ] DBG  Enabling editing of [xlsm] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590240 +0000 [ coolwsd ] DBG  Enabling editing of [dif] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590247 +0000 [ coolwsd ] DBG  Enabling editing of [slk] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590256 +0000 [ coolwsd ] DBG  Enabling editing of [csv] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590266 +0000 [ coolwsd ] DBG  Enabling editing of [dbf] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590298 +0000 [ coolwsd ] DBG  Enabling editing of [odp] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590305 +0000 [ coolwsd ] DBG  Enabling editing of [fodp] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590326 +0000 [ coolwsd ] DBG  Enabling editing of [ppt] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590339 +0000 [ coolwsd ] DBG  Enabling editing of [pptx] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590346 +0000 [ coolwsd ] DBG  Enabling editing of [pptm] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590363 +0000 [ coolwsd ] DBG  Enabling editing of [ppsx] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590394 +0000 [ coolwsd ] DBG  Enabling editing of [odg] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590402 +0000 [ coolwsd ] DBG  Enabling editing of [fodg] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.590535 +0000 [ coolwsd ] DBG  Enabling editing of [] extension files| wsd/ClientRequestDispatcher.cpp:1949

wsd-00001-00001 2024-09-02 15:53:18.591839 +0000 [ coolwsd ] WRN  File not found: Private key file: /etc/coolwsd/proof_key

No proof-key will be present in discovery.

If you need to use WOPI security, generate an RSA key using this command:

    sudo coolconfig generate-proof-key

or if your config dir is not /etc, you can run ssh-keygen manually:

    ssh-keygen -t rsa -N "" -m PEM -f "/etc/coolwsd/proof_key"

Note: the proof_key file must be readable by the coolwsd process.| wsd/ProofKey.cpp:151

wsd-00001-00001 2024-09-02 15:53:18.592637 +0000 [ coolwsd ] TRC  #14: Created socket. Thread affinity set to 0x79fc6d933840| net/Socket.hpp:384

wsd-00001-00001 2024-09-02 15:53:18.592647 +0000 [ coolwsd ] TRC  #14: Bind to: IPv6 port: 9980| net/Socket.cpp:1051

wsd-00001-00001 2024-09-02 15:53:18.592651 +0000 [ coolwsd ] TRC  #14: Listening| net/ServerSocket.hpp:77

wsd-00001-00001 2024-09-02 15:53:18.592652 +0000 [ coolwsd ] INF  #14 Listening to client connections on port 9980| wsd/COOLWSD.cpp:4250

wsd-00001-00001 2024-09-02 15:53:18.592654 +0000 [ coolwsd ] TRC  Creating thread for SocketPoll prisoner_poll| net/Socket.cpp:312

wsd-00001-00001 2024-09-02 15:53:18.592721 +0000 [ coolwsd ] TRC  #15: Created socket. Thread affinity set to 0x79fc6d933840| net/Socket.hpp:384

wsd-00001-00001 2024-09-02 15:53:18.592726 +0000 [ coolwsd ] INF  #15: Binding to Unix socket for local server with base name: 0coolwsd-| net/Socket.cpp:1233

wsd-00001-00001 2024-09-02 15:53:18.592734 +0000 [ coolwsd ] TRC  #15: Binding to Unix socket location [coolwsd-FC9FzPM2], result: 0| net/Socket.cpp:1260

wsd-00001-00001 2024-09-02 15:53:18.592737 +0000 [ coolwsd ] TRC  #15: Listening| net/ServerSocket.hpp:77

wsd-00001-00001 2024-09-02 15:53:18.592739 +0000 [ coolwsd ] INF  Listening to prisoner connections on coolwsd-FC9FzPM2| wsd/COOLWSD.cpp:4183

wsd-00001-00001 2024-09-02 15:53:18.592740 +0000 [ coolwsd ] TRC  Inserting socket #15, address [], into prisoner_poll| net/Socket.hpp:742

wsd-00001-00001 2024-09-02 15:53:18.592741 +0000 [ coolwsd ] TRC  #15: Resetting thread affinity while in transit (was 0x79fc6d933840)| net/Socket.hpp:337

wsd-00001-00001 2024-09-02 15:53:18.592745 +0000 [ coolwsd ] INF  Waiting for a new child for a max of 20000ms| wsd/COOLWSD.cpp:4421

wsd-00001-00027 2024-09-02 15:53:18.592742 +0000 [ prisoner_poll ] INF  Thread 27 (79fc6c2006c0) of process 1 formerly unnamed is now called [prisoner_poll]| common/Util.cpp:325

wsd-00001-00027 2024-09-02 15:53:18.592755 +0000 [ prisoner_poll ] INF  Starting polling thread [prisoner_poll] with thread affinity set to 0x79fc6c2006c0.| net/Socket.cpp:375

wsd-00001-00027 2024-09-02 15:53:18.592760 +0000 [ prisoner_poll ] TRC  ppoll start, timeoutMicroS: 64000000 size 0| net/Socket.cpp:430

wsd-00001-00027 2024-09-02 15:53:18.592765 +0000 [ prisoner_poll ] TRC  Poll completed with 1 live polls max (64000000us)| net/Socket.cpp:448

wsd-00001-00027 2024-09-02 15:53:18.592769 +0000 [ prisoner_poll ] TRC  #6: Handling events of wakeup pipe: 0x1| net/Socket.cpp:457

wsd-00001-00027 2024-09-02 15:53:18.592772 +0000 [ prisoner_poll ] TRC  Wakeup pipe read 1 bytes| net/Socket.cpp:464

wsd-00001-00027 2024-09-02 15:53:18.592774 +0000 [ prisoner_poll ] TRC  Inserting 1 new sockets after the existing 0| net/Socket.cpp:476

wsd-00001-00027 2024-09-02 15:53:18.592775 +0000 [ prisoner_poll ] TRC  #15: Thread affinity set to 0x79fc6c2006c0 (was 0)| net/Socket.hpp:326

wsd-00001-00027 2024-09-02 15:53:18.592778 +0000 [ prisoner_poll ] TRC  PrisonerPoll - wakes up with 0 new children and 0 brokers and 0 kits forking| wsd/COOLWSD.cpp:3488

wsd-00001-00027 2024-09-02 15:53:18.592781 +0000 [ prisoner_poll ] INF  Creating new forkit process.| wsd/COOLWSD.cpp:3511

wsd-00001-00027 2024-09-02 15:53:18.592796 +0000 [ prisoner_poll ] INF  Launching forkit process: /usr/bin/coolforkit-caps --systemplate=/opt/cool/systemplate --lotemplate=/opt/collaboraoffice --childroot=/opt/cool/child-roots/1-a9efa13e/ --clientport=9980 --masterport=coolwsd-FC9FzPM2 --rlimits=limit_virt_mem_mb:0;limit_stack_mem_kb:8000;limit_file_size_mb:0;limit_num_open_files:0 --version --ui=default| wsd/COOLWSD.cpp:3625

wsd-00001-00027 2024-09-02 15:53:18.592897 +0000 [ prisoner_poll ] INF  Forkit process launched: 28| wsd/COOLWSD.cpp:3631

wsd-00001-00027 2024-09-02 15:53:18.592901 +0000 [ prisoner_poll ] TRC  Rebalance children to 3, have 0 and 1 outstanding requests| wsd/COOLWSD.cpp:554

wsd-00001-00027 2024-09-02 15:53:18.592906 +0000 [ prisoner_poll ] TRC  Rebalance children to 4, have 0 and 1 outstanding requests| wsd/COOLWSD.cpp:554

wsd-00001-00027 2024-09-02 15:53:18.592907 +0000 [ prisoner_poll ] TRC  PollSocket container size has changed from 0 to 1| net/Socket.cpp:521

frk-00028-00028 2024-09-02 15:53:18.594431 +0000 [ coolforkit-caps ] INF  Initializing frk. Local time: Mon 2024-09-02 15:53:18 +0000. Log level is [8]| common/Log.cpp:654

frk-00028-00028 2024-09-02 15:53:18.594439 +0000 [ coolforkit-caps ] INF  Setting log-level to [trace and delaying setting to configured [warning] until after Forkit initialization.| kit/ForKit.cpp:654

frk-00028-00028 2024-09-02 15:53:18.594450 +0000 [ coolforkit-caps ] INF  RLIMIT_AS is unlimited after setting it to unlimited.| common/Seccomp.cpp:287

frk-00028-00028 2024-09-02 15:53:18.594457 +0000 [ coolforkit-caps ] INF  RLIMIT_STACK is 8192000 bytes after setting it to 8192000 bytes.| common/Seccomp.cpp:287

frk-00028-00028 2024-09-02 15:53:18.594458 +0000 [ coolforkit-caps ] INF  Ignored setting RLIMIT_FSIZE to unlimited.| common/Seccomp.cpp:293

frk-00028-00028 2024-09-02 15:53:18.594460 +0000 [ coolforkit-caps ] INF  Ignored setting RLIMIT_NOFILE to unlimited.| common/Seccomp.cpp:293

frk-00028-00028 2024-09-02 15:53:18.594466 +0000 [ coolforkit-caps ] DBG  About to init Kit UnitBase with test []| kit/ForKit.cpp:766

frk-00028-00028 2024-09-02 15:53:18.594476 +0000 [ coolforkit-caps ] ERR  Capability cap_sys_chroot is not set for the coolforkit program.| kit/ForKit.cpp:230

frk-00028-00028 2024-09-02 15:53:18.594479 +0000 [ coolforkit-caps ] ERR  Capability cap_fowner is not set for the coolforkit program.| kit/ForKit.cpp:230

frk-00028-00028 2024-09-02 15:53:18.594482 +0000 [ coolforkit-caps ] ERR  Capability cap_chown is not set for the coolforkit program.| kit/ForKit.cpp:230

Capabilities are not set for the coolforkit program.

frk-00028-00028 2024-09-02 15:53:18.594485 +0000 [ coolforkit-caps ] FTL  Capabilities are not set for the coolforkit program.| kit/ForKit.cpp:780

Please make sure that the current partition was *not* mounted with the 'nosuid' option.

frk-00028-00028 2024-09-02 15:53:18.594488 +0000 [ coolforkit-caps ] FTL  Please make sure that the current partition was *not* mounted with the 'nosuid' option.| kit/ForKit.cpp:781

If you are on SLES11, please set 'file_caps=1' as kernel boot option.

coolforkit version details: 24.04.7.1 - 61cf2b4

frk-00028-00028 2024-09-02 15:53:18.594490 +0000 [ coolforkit-caps ] FTL  If you are on SLES11, please set 'file_caps=1' as kernel boot option.| kit/ForKit.cpp:782

Any ideas? @marslmarcello Would you mind sharing the commands to roll back? I’ve never done that before.

@rolobob @MarslMarcello it seems we are having trouble with docker image recently. We are investigating the problem

Thanks,
Darshan

1 Like

There are ongoing discussions on Matrix, and I encourage you all to join as it will help identify the problem more quickly by communicating with more people there.

Here’s the link: Matrix Chat.

Thanks for your patience,
Darshan

Solved with a fix as said in GitHub :slight_smile: Thanks

Awesome news! Thanks, @MarslMarcello, for sharing, and thanks again for giving feedback about the release.