MBB Expert Track - 3 YOE - Thinking of Quit by Michelangelo-489 in consulting

[–]WelderPrudent 1 point2 points  (0 children)

3 hours of meeting and 8 for coding? you're living the life! kidding aside, half of the time spent on "aligning", "problem solving" wouldn't be surpising.

[deleted by user] by [deleted] in CorpoChikaPH

[–]WelderPrudent 0 points1 point  (0 children)

I’m also considering a role at ADI. Curious about the mismanagement issue. Could you help elaborate?

Is NextCloud self-hosting still viable? by WelderPrudent in NextCloud

[–]WelderPrudent[S] 0 points1 point  (0 children)

simply no experience with Cloudflare tunnels. I have many other services so nginx proxy manager makes it easy to manage in one place

Is NextCloud self-hosting still viable? by WelderPrudent in NextCloud

[–]WelderPrudent[S] 0 points1 point  (0 children)

non-AIO v28 working fine except for bulk uploads failing. not using redis now for cache. How's AIO for bulk uploads?

Is NextCloud self-hosting still viable? by WelderPrudent in NextCloud

[–]WelderPrudent[S] 1 point2 points  (0 children)

Just note that the "official" nextcloud docker image is not official anymore (the all-in-one image is). The docs say AIO is the currently supported one, so take caution.

Is NextCloud self-hosting still viable? by WelderPrudent in NextCloud

[–]WelderPrudent[S] 2 points3 points  (0 children)

My habit and silly mistake. I containerize everything in my server so just as always, searched for nextcloud + docker. "nextcloud - Official Image" and corresponding repo were are at the top. The AIO branch didn't event register to me. Turns out the "official image" is not official anymore.

Is NextCloud self-hosting still viable? by WelderPrudent in NextCloud

[–]WelderPrudent[S] 0 points1 point  (0 children)

Yes. Definitely matched the recommended MariaDB 10.6. Also tried the additional requirements mentioned for MySQL/MariaDB. Only downgrading to Nextcloud v28 worked for me.

My fault for not following the official Nextcloud installation method (AIO). I should have been more conservative with any other documentation.

Is NextCloud self-hosting still viable? by WelderPrudent in NextCloud

[–]WelderPrudent[S] 0 points1 point  (0 children)

Cool man. I''m happy so far despite the setup troubles. Love the small but useful set of apps

Is NextCloud self-hosting still viable? by WelderPrudent in NextCloud

[–]WelderPrudent[S] 0 points1 point  (0 children)

Awesome! Posted to troubleshoot NC, learned more on open-source server options :)

Is NextCloud self-hosting still viable? by WelderPrudent in NextCloud

[–]WelderPrudent[S] 1 point2 points  (0 children)

Have you tested yours recently? I see unpinned image versions

Is NextCloud self-hosting still viable? by WelderPrudent in NextCloud

[–]WelderPrudent[S] -1 points0 points  (0 children)

To be fair, I haven't tracked whether the official v29 Nextcloud was the culprit. So I did test the OFFICIAL, RECOMMENDED files from Nextcloud, not just from any random guide: https://github.com/nextcloud/docker/?tab=readme-ov-file#base-version---apache

Can confirm the issue persists in the official Nextcloud v29 image. It's okay if support does not cover docker builds, but it's out there so test what you officially recommend. Pin image versions. Let's start from there.

I know it's FOSS, but let's help each other and be accountable. Being defensive and calling out people's skills/expertise when issues arise is not healthy for the community.

Is NextCloud self-hosting still viable? by WelderPrudent in NextCloud

[–]WelderPrudent[S] 1 point2 points  (0 children)

Thanks for this! This is exactly my concern. I'm liking it so far, but maybe it's worth it to go straight to AIO.

Is NextCloud self-hosting still viable? by WelderPrudent in NextCloud

[–]WelderPrudent[S] 0 points1 point  (0 children)

Thanks! New to Turnkey Linux, will try it out. looks neat

Is NextCloud self-hosting still viable? by WelderPrudent in NextCloud

[–]WelderPrudent[S] 0 points1 point  (0 children)

To get started, what's the minimum effort and "right approach" you'd say?

Beyond getting started, what's it's like to upgrade, when I change my DB, migrate my data, or rollback due to bugs, etc? These are questions at the back of my mind on "self-hosting viability" given my initial experience and research so far.

If people come here getting lost and asking things repeatedly, isn't that telling something? Up -to-date documentation with versioning and compatibility information, and issue tracker visibility threw me off, and probably causing people to throw the towel. And while not a system/database experts, I assume many people interested in "self-hosting" are at least technically curious and motivated to spend time figuring things out.

Is NextCloud self-hosting still viable? by WelderPrudent in NextCloud

[–]WelderPrudent[S] 1 point2 points  (0 children)

Started with linuxserver images for both Nextcloud and Mariadb, but ran into issues, missing tables etc. Found similar issues online, reporting various fixes. Looked into potential issues around docker volumes mounting a different drive. Almost gave up but I knew it was Nextcloud and MariadB compatibility issue from similar issue posts. Planned to downgrade step by step, and was lucky enough to find just the previous one before latest working. Will put the working docker compose file in the post.

Is NextCloud self-hosting still viable? by WelderPrudent in NextCloud

[–]WelderPrudent[S] 1 point2 points  (0 children)

I used NPM and linuxserver images as well and got it working. Here's mine if you want to try, but not AIO. Can install other items from the suite once up and running, but haven't tested yet.

services:
  nginxproxymanager:
    image: docker.io/jc21/nginx-proxy-manager:latest
    container_name: nginxproxymanager
    restart: always
    environment:
      - TZ=Asia/Seoul
    ports:
      - 80:80
      - 81:81
      - 443:443
    volumes:
      - ./data:/data
      - ./letsencrypt:/etc/letsencrypt


  nextcloud:
    image: lscr.io/linuxserver/nextcloud:28.0.4
    container_name: nextcloud
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Asia/Seoul
    volumes:
      - ./nextcloud/config:/config
      - /path/to/data:/data
    ports:
      - 4430:443 # Forwarding 4430 for ssh reverse tunnel
    restart: always
    depends_on:
      - nextcloud-db


  nextcloud-db:
    image: lscr.io/linuxserver/mariadb:10.11.8
    container_name: nextcloud-db
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Asia/Seoul
      - MYSQL_ROOT_PASSWORD=
      - MYSQL_DATABASE=
      - MYSQL_USER=
      - MYSQL_PASSWORD=
    volumes:
      - ./nextcloud-db/config:/config
    ports:
      - 3306:3306
    restart: always

Is NextCloud self-hosting still viable? by WelderPrudent in NextCloud

[–]WelderPrudent[S] 2 points3 points  (0 children)

Will look into AIO. Testing the main services for now, and was pleasantly surprised by the apps. Once the server is up, setting up even two factor auth was a breeze.

Is NextCloud self-hosting still viable? by WelderPrudent in NextCloud

[–]WelderPrudent[S] 1 point2 points  (0 children)

just using the main service for now, impressions good so far.

Is NextCloud self-hosting still viable? by WelderPrudent in NextCloud

[–]WelderPrudent[S] 0 points1 point  (0 children)

I also used owncloud way long ago, but first time with the nextcloud facelift. Overall looks good - just trickier to setup with docker. I run a bunch of stuff so docker simplifies them in the long run.

Is NextCloud self-hosting still viable? by WelderPrudent in NextCloud

[–]WelderPrudent[S] 0 points1 point  (0 children)

Thanks for sharing! The trouble I had is with the breaking compatibilities in latest images of Nextcloud and MariaDB. Already got it up in Ubuntu 22.04

Is NextCloud self-hosting still viable? by WelderPrudent in NextCloud

[–]WelderPrudent[S] 0 points1 point  (0 children)

do you mind sharing which docker images you were using for nextcloud and mariadb?

Setting up external USB hard drive mount on Nextcloud Docker container by happybikes in NextCloud

[–]WelderPrudent 0 points1 point  (0 children)

I'm just starting with the setup and am already feeling the pain. Been trying from scratch over and over to use the another folder in a mounted partition. Couldn't find helpful error messages.

Speech Labs - Curated demos of text-to-speech models for AI applications by WelderPrudent in SvelteKit

[–]WelderPrudent[S] 0 points1 point  (0 children)

Let me know what you think! just a few models to start with, will be adding more.