this post was submitted on 10 Sep 2023
0 points (NaN% liked)

Selfhosted

39167 readers
381 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

So far my experience with Nextcloud has been that it is a pain in the arse to install, and once it's installed is slow as anything. Literally couldn't run it on my pi 3b, now got it up and running pretty nicely on a NUC but it's still not great. Have caching set up.

I have the notes app installed on my android phone and I can never used rich text editing because it gives timeout error.

This shouldn't be this complicated. All I want is to de-Google my documents and notes, and self-host my kanban. I don't really need the rest though it's nice to have the options.

Do people use alternatives? Am I doing something completely wrong? I set it up using nginx which I know is not supported, but the alternative using Docker AIO didn't allow me to use custom port easily.

top 10 comments
sorted by: hot top controversial new old
[–] scrapeus@feddit.de 0 points 1 year ago

I suspect nextcloud having performance issues with slow Disk IO. With rootless containers I had a much worse performance than rootfull. Also using MySQL Backend instead of SQLite did speedup the performance.

Nevertheless I have the same problems with nextcloud as you stated. Pretty much not as usable as I thought.

[–] aion@feddit.de 0 points 1 year ago

I dont know about kanban but the other stuff can be achieved via webdav. All major webservers can do that or you just use filebrowser.org (a selfhosted webdav server with built-in user management).

[–] redcalcium@lemmy.institute 0 points 1 year ago (1 children)

I'm my experience, nextcloud is quite I/O bound. The performance of your storage device will greatly affect nextcloud performance. But if you're already using SSD and the performance still bad, maybe there are other issues with your setup.

[–] agressivelyPassive@feddit.de 0 points 1 year ago (1 children)

For me, speed isn't the only issue. Everything about nc seems to be cobbled together in the most inconvenient way possible. Updates have always been hit or miss for me - and if you choose to use dockerized versions, you might as well shoot yourself, everything is very slow, even as the only use having it running on a quite capable machine it feels sluggish (not slow, but uncomfortably delayed).

It's a glorified Dropbox clone, why do I need anything more than a rpi1 for that?

[–] redcalcium@lemmy.institute 0 points 1 year ago* (last edited 1 year ago) (1 children)

It's a PHP app inherited from owncloud so at some point you'll just have to accept it won't be as performant as apps written in compiled languages (and it also inherit owncloud's quirks and other annoyance related to its php-based deployment). But this weakness is actually a strength too, being a php app makes extending its functionality very easy, resulting in a lot of community-developed plugins. Basically a trade-off between performance and features + community plugins availability. If you value performance more and don't need anything beyond file sharing feature, there are plenty of other options right now.

[–] agressivelyPassive@feddit.de 0 points 1 year ago

I understand the history, and that may have been an excuse 6 months after the fork, but think about how long nc exists now. And how many features (like migrations) are apparently simply not worked on.

NC is a great example of the current trend of "fuck good design, just throw more silicon at the problem".

[–] giddy@aussie.zone 0 points 1 year ago (1 children)

I seriously suggest you give Nextcloud another go, this time under Docker. Very simple to do.

Save the following in a new folder as docker-compose.yml

version: '3'

volumes:
  db:

services:

  nextcloud-app:
    image: nextcloud
    container_name: nextcloud-app
    restart: always
    volumes:
      - ./data:/var/www/html
    environment:
      - MYSQL_PASSWORD=changeme
      - MYSQL_DATABASE=nextcloud
      - MYSQL_USER=nextcloud
      - MYSQL_HOST=nextcloud-db
    ports:
      - "80:80"
    links:
      - nextcloud-db

  nextcloud-db:
    image: mariadb
    container_name: nextcloud-db
    restart: always
    command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
    volumes:
      - db:/var/lib/mysql
    environment:
      - MYSQL_ROOT_PASSWORD=changeme
      - MYSQL_PASSWORD=changeme
      - MYSQL_DATABASE=nextcloud
      - MYSQL_USER=nextcloud

run this command in the folder -

docker-compose up -d

open http://localhost

[–] iHUNTcriminals@lemm.ee 0 points 1 year ago (1 children)

Is the mariadb a default part of nextcloud? I've seen posts saying to use a separate db so things can be backed up easier, so I was wondering if that's how you have it set up above.

[–] scorpionix@feddit.de 0 points 1 year ago

In this setup the DB is not part of Nextcloud. Both are running in separate services aka containers, which can be administrated independently from each other.

[–] simon574@feddit.de 0 points 1 year ago

For Kanban I use wekan, because it has more features. Nextcloud I host using snap, which I cannot 100% recommend because it sometimes has troubles upgrading to the latest version. Still, for me it causes less trouble than a manual install.