Try Nextcloud-AIO and install the Preview Generator as well. (note that you will need to run it manually the first time). I did struggle as well, before I found the AIO. Now I'm happy. :-)
Self-Hosted Main
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.
For Example
- Service: Dropbox - Alternative: Nextcloud
- Service: Google Reader - Alternative: Tiny Tiny RSS
- Service: Blogger - Alternative: WordPress
We welcome posts that include suggestions for good self-hosted alternatives to popular online services, how they are better, or how they give back control of your data. Also include hints and tips for less technical readers.
Useful Lists
- Awesome-Selfhosted List of Software
- Awesome-Sysadmin List of Software
Is there something better than DAVx5? It seems to be too battery hungry compared to Google calendar.
Just came to say I self host baikal too for calendar and address book / tasks
use DavX on my Android phone to keep it in sync and thunderbird on the computer
It's the right choice, nextcloud is buggy af, the issue from years ago where it randomly corrupts files is still open too, I got hit by that one and had to completely restore from a backup.
IMO Joplin is a better idea for note taking
Went from nextcloud to FileBrowser for web files access, with resilio/syncthing under the hood for synchronisation. My family couldn’t be happier, but yeah - we are not using calendar futures.
Nextcloud is a large and complex application, it does need more resources than one would probably expect.
Nextcloud macOS and iOS apps make running it a no-brainer for me. Nextcloud on macOS works better than Google Drive.
I moved Nextcloud from k8s to a well provisioned lxc container and ran a couple of performance boosting commands and it's been working wonders since then
I moved Nextcloud from k8s to a well provisioned lxc container and ran a couple of performance boosting commands and it's been working wonders since then
- Files --> syncthing, or ssh access, or vpn to samba
- Calendar --> I recommend radicale (but use google)
- Notes --> Obsidian notes on top of syncthing
I've been a loyal owncloud and then nextcloud user but am growing disappointed in the nextcloud android app. It seems like support/development is quickly degrading. There's a file upload conflict big that was introduced in an update in September? and they still haven't rolled back or resolved the issue. https://github.com/nextcloud/android/issues/11974
I love the idea of nextcloud but it really seems pretty hostile towards hosters I would suggest looking at something like Cryptpad which is at least an upgrade to your personal security.
Nextcloud was painfully slow on a cheap HDD based VPS, I finally moved it to SSD and it's been fast. With redis and SSD its quick. I'd take a look at your system to make sure that's not the cause.
u/Sudden_Cheetah7530 We also use Nextcloud and deploy it on Kubernetes with our Open Source Nextcloud Operator and it works without any issues so far. I hope that helps you too
Good ole manual file sharing and syncthing for my phone pics
Files: SYNCTHING CalcardDav: Baikal Notes: Obsidian with livesync plugin and a couchdb as backend ...yeah and webdav for folder shares inside apples files app
Files: Seafile
Calendar: Radicale
Notes: Joplin
Network Folder: N/A
I use pydio cells for file sharing.
Synology Drive is rock solid. Not open source though if that's important to you and technically requires Synology hardware.
I use pydio for cloud drive. I think you can try this
Owncloud.
I personally never caught the Nextcloud hype, and stuck with the original. So far I've heard (and seen, having tried it twoce) nothing but trouble from Nextcloud while my Owncloud install continues to be rock solid for going on 10 years (regularly updated, of course!).
Same. I ran OwnCloud and Nextcloud in parallel for a while until a Nextcloud update nuked it and my wife lost some of her college work.
After that I've appreciated the slower more deliberate pace of OwnCloud
This is concerning to me because I’ve been considering ditching Synology and spinning up nextcloud. I like Synology drive but I’m tired of the underpowered hardware and dumb roadblocks and vendor lock-in nonsense. I’m very curious what you end up doing!
Nextcloud is great. I don't doubt that OP is having problems, and I understand how frustration can set in and one might throw in the towel and look for alternatives, but OP's experience is atypical. I've been running it for years without any issues. I should point out that I only use it for small-scale personal stuff, but it's good for me. I have it syncing on eight devices, including Linux, MacOS, and Windows desktops; Android phone; iPad; Raspberry Pi. My phone auto-uploads new camera photos. I'm using WebDAV/Fuse mounts on some machines. Everything is solid.
I dumped synology and just use proxmox for the automatic ZFS support, then I can run my apps in either containers or VMs and even do GPU passthrough if needed.
You have not stated the hardware you are running this on. It makes a huge difference. Hope this is not Raspi?
Hope this is not Raspi?
What is wrong with RPi? I thought RPi 4 for two calendars (one calendar per user) on nextcloud would be plenty, looking at the requirements:
A 64-bit CPU, OS and PHP is required for Nextcloud to run well. ...
Nextcloud needs a minimum of 128MB RAM per process, and we recommend a minimum of 512MB RAM per process.
Also, how resource intensive could/should be syncing two personal calendars (via Thunderbird)? I don't understand, why NextCloud with this virtually negligible task struggles so much. The pi has 7+GB of free memory, CPU load under few %, rarely one core has some load, most of the time nothing accesses the card nor disk (virtually 0 iowait; only with a short spike once every 5 minutes). Why does Nextcloud take half a minute to several minutes for a sync of one calendar in Thunderbird?
Its underpowered, especially for an application based on PHP which is single threaded so requires a core with a fast clock. The RPi4 with 1.5Ghz is woefully underpowered to drive anything php backed.
I see 1.8GHz in glances (in my case actively cooled, but since it doesn't seem to max any core, it probably doesn't matter). I have other RPi4s, I wonder why is backend in Java (well, Scala) ok, backend in Haskell ok, but backend in PHP wouldn't be? I still don't understand how Nextcloud can lock up for so long (tens of seconds) on a simple write event into calendar operation. That hacky unoptimized Java BE which does joins manually and inserts sequentially (so from a db perspective just awful), handles 5-10 times more data and still does it order of magnitude faster. My old phone which was weaker than even RPi4 could handle dozens of such small operations in one second (I believe that was SQLite + Java). There must something seriously wrong with Nextcloud (including PHP runtime) and/or the RPi, because such insignificant amount of data (1 word title, one date, one reminder option), most likely merely few dozens of bytes, takes so incredibly long to process and write to db...
i cant comment on the differences between languages, but it probably also has a lot to do on how nextcloud is written. unoptimized software is always going to be slower than it's counterpart.