1
9
submitted 2 months ago by [email protected] to c/[email protected]

I installed NextCloud previously and it sucked. Most of it, in my mind was down to how slow and clunky it felt. I came here and people said the default installation can be like that, so I kinda just left things alone, determined that I would eventually come back and sort things.

Fast forward to now and my system has matured enough, well at least enough that I've installed Postgres and can access it via Adminer.

So I clear out all my directories, delete the container and decide it's time to reinstall NextCloud. Simple right? Wrong! It's telling me that I have the wrong username and password.

I asked for some help and someone said, don't give any app default access and that's fair and then they pointed me to the docs. The docs said to do some shit I didn't understand really. But from what I could gather, essentially open the console and run a command.

Problem! Every time I try and open the console for the container, it says it can't read the image details. Okay, let's work around that then. I open up Adminer and via SQL command run:

CREATE USER nextcloud WITH PASSWORD 'R4ND0MP4SS' CREATEDB;
CREATE DATABASE nextcloud TEMPLATE template0 ENCODING 'UTF8';
ALTER DATABASE nextcloud OWNER TO nextcloud;
GRANT ALL PRIVILEGES ON DATABASE nextcloud TO nextcloud;
GRANT ALL PRIVILEGES ON SCHEMA public TO nextcloud;

I actually manage to log into Adminer with said details. NextCloud on the other hand is telling me that the username and/or password is incorrect. What am I doing wrong?

2
9
submitted 3 months ago by [email protected] to c/[email protected]

As the title asks, what apps are you running?

Also do you have your data on your host machine or on your main storage/NAS?

Last question, is it just my set-up or is NextCloud slow for everyone?

3
7
submitted 3 months ago by [email protected] to c/[email protected]

I don't know if I'm stupid or if NextCloud's instructions are stupid, it's probably me and subsequently I'm struggling.

For all of my Docker stuff, I move the config directory to my opt folder with a simple

    volumes:
     - /opt/APPNAME/config:/config

And generally have the data on a remote drive like

    - music:/music

volumes: 
  music: 
    driver_opts:
      type: "nfs"
      o: "addr=192.168.X.XXX,nolock,soft,rw"
      device: ":/mnt/HD/Public/Shared Music"

This works perfectly for everything and I'm generally pleased with how things run. But NextCloud is throwing a bunch of words at me and I don't get it. Why can't it be as simple as what I'm already doing? Why do I have to declare

    environment
      - NEXTCLOUD_DATADIR=
      - NEXTCLOUD_MOUNT=

And why is it pointing me to? https://github.com/nextcloud/all-in-one?tab=readme-ov-file#how-to-store-the-filesinstallation-on-a-separate-drive

Which just points you to https://www.guguweb.com/2019/02/07/how-to-move-docker-data-directory-to-another-location-on-ubuntu/

I'm looking at this Docker Compose like...

NextCloudPi was so simple to set up. If not for being stuck on v25, I'd have been happy with it. 🥺

4
2
submitted 3 months ago by [email protected] to c/[email protected]

It points to an x86 image

5
6
submitted 4 months ago by [email protected] to c/[email protected]

Which version do you have installed and what do you use your installation for?

6
7
submitted 5 months ago by [email protected] to c/[email protected]

I'm trying out Nextcloud to use as on my home server. It looks great, but seems way overkill for just two users that really only want the file sync. capability.

As I'm reading I'm seeing references to WebDAV and it seems that the Nextcloud file sync. server might be "just" a WebDAV server? If it is, might it be possible to point the Nextcloud sync. client (on Windows and Android) at an appropriately configured Apache or nginx server?

The reason I'm asking here, rather than just trying for myself, is that I have no experience with WebDAV and have no idea what an appropriately configured server might mean in this situation. I'm happy to go do the required learning to make it work - just looking for someone to tell me it's not possible before I put too much effort into it.

7
14
Nextcloud 2023 Wrap-Up (nextcloud.com)
submitted 5 months ago by [email protected] to c/[email protected]
8
6
submitted 5 months ago by [email protected] to c/[email protected]
9
4
Upgrading from 23 to 27? (discuss.tchncs.de)
submitted 6 months ago by [email protected] to c/[email protected]

I have a self hosted installation here which is running v23 something, according to version.php. Is there an upgrade path to the latest version?

10
4
submitted 6 months ago by [email protected] to c/[email protected]

I want to set up a server on an old laptop at home to synchronize my Obsidian notes and some pdfs. I'll install Nextcloud AIO but I have a question about domain.

Do I need to buy a domain name for the sync to work properly? I created a dynamic dns account on Noip but I don't know if this is a temporary solution or permanent?

If the domain is necessary, is it enough to just buy a domain or do I need to buy a hosting package or something?

11
2
submitted 6 months ago by [email protected] to c/[email protected]

I have a potentially dumb question, but honestly I've run out of ideas. I'm running a family nextcloud instance where me and my wife are managing our things, in our own boards. She noticed that cards that she put in her "Done" stack in a board of hers, are deleted after about a year. I have to emphasize:

  • She does not delete the cards (they hold important information, even though they are Done)
  • She does not even archive them

All she does is she moves them to a stack. First off, this is a problem, as she's losing information (I'm now restoring old database backups to get back old Deck cards, not a fun activity in itself). But second, this bugs the hell out of me: is there any functionality that would do this in Nextcloud? Some hidden setting? I'm even thinking possible user error, but she's quite tech savvy and I believe her when she says she does not do this knowingly...

Also important to highlight that I have cards from 2 years ago in my boards that are just fine, no deletion, nothing. And nothing in the logs, althgough I don't even know what I'm looking for, because we aren't sure when the deletion happened.

Any idea/pointer would be highly appreciated.

12
7
submitted 7 months ago* (last edited 7 months ago) by [email protected] to c/[email protected]

cross-posted from: https://lemmy.horwood.cloud/post/51983

Also check out the release presentation: https://farside.link/invidious/watch?v=iSEMxWB-lIA

13
8
submitted 9 months ago by [email protected] to c/[email protected]
14
5
submitted 10 months ago* (last edited 10 months ago) by [email protected] to c/[email protected]

Pops up every time I play a video on my local network, very irritating. any fix? Didn’t see a solution via google lol

Edit: All i want is to disable the notification i get on iOS, not change to HTTPS or anything like that

15
5
submitted 10 months ago by [email protected] to c/[email protected]

I want to install Nextcloud on Docker, and Apache on apt. I just feel that it will make it easier to set up my certificates using Cloudflare, and make quick configuration changes. It also helps because I have many other docker containers running at the same time. (each other container will have their own certificate file, too). I don't like the 'all in one' containers, I'd prefer to just set everything up myself so I know exactly how works.

Or are there any other ways of setting it up? Apart from snap because I hate proprietary software because the whole reason I'm doing this is to get away from it.

16
1
submitted 11 months ago by [email protected] to c/[email protected]

Hi. I wanted to fully sync a document folder on my android tablet, so I can edit some documents on it on the go, just like I do on the desktop, but I dont really understand how to do it with the android app.

Like, I remember google drive had an option to make a folder available offline and give me the option to navigate said documents.

I dont like editing documents directly from the nextcloud app because in my experience is slow, so I just like using Text editing apps and sometimes I dont have internet, so would be good to sync them after I get a WiFi connection again.

Please help. Thanks.

17
1
submitted 11 months ago* (last edited 11 months ago) by [email protected] to c/[email protected]

Hello!

so i just set up a nextcloud instance via docker-compose on one of my servers.

But i already have multiple webservers on my network that have to be accessible from outside. Therefore i set up a nginx reverse proxy on one of my other servers, published it's ports and connect all the other services via that.

Now that docker nextcloud i installed doesn't go smooth with it. It's using the dockerhub.io image and doesn't come with any kind of proxy config.

And i don't know how to proceed anymore tbh...

The actual problem is as follows: I have the admin account that works perfectly fine. I can access everything and every menu from my domain name; let's say it's https://domain.randomlegend.com

I then created a regular user account for me to actually use. This user account can login and can access the dashboard. It cannot access the files or the settings. If i try, i get this error:

I can find the following error in the nextcloud.log:

[...] ,"level":3, "time" :"2023-06-27T18:43:20+00:00", "remoteAddr" :"xxx.xxx.xxx.xxx", "user": "randomlegend", "app" :"no app in context", "method":"POST", "url":"/login", "message": "Cannot assign requested address", "userAgent [...]

This is the part in the config.php i did regarding the proxy stuff.

overwritehost and overwrite.cli.url have the same address in them but the cli.url has https:// infront of it.

I also get this error in the overview of nextcloud...

If i now create another new user, that user can't even log in...immediately get's the "Internal Server Error"


Soooo....any idea on why the regular user get's errors and the admin account does not? Also, what did i forget to config?

Any help would be appreciated! Thanks


Fixed

18
1
submitted 11 months ago by [email protected] to c/[email protected]
19
2
submitted 11 months ago by [email protected] to c/[email protected]

I want to sync my podcast activity using Flodder (https://github.com/thrillfall/nextcloud-gpodder/). There is a nextcloud app for this: https://apps.nextcloud.com/apps/gpoddersync

I have never used nextcloud before, so I am not sure how to install an app. I created a nextcloud account that was pointing me to the a server with the address https://the good.cloud. With my credentials and this server address, I can log in to this nextcloud instance via the nextcloud android app. I don't see any options to install apps there though.

Is it possible to install apps in nextcloud when you are not self hosting? If so, how do I do that?

20
1
submitted 11 months ago by [email protected] to c/[email protected]

cross-posted from: https://lemmy.ml/post/839061

I've been thinking about buying an AirTag to put on my cat's collar, I have an iOS device, so I could track the AirTag from there, but I'd like to be able to do that and keep a history from Nextcloud PhoneTrack app, that would be great. Anyone has any idea if this can be done? How to do it? Any alternatives?

21
1
Nextcloud Hub 5 (farside.link)
submitted 11 months ago by [email protected] to c/[email protected]
22
1
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]

I've been thinking about buying an AirTag to put on my cat's collar, I have an iOS device, so I could track the AirTag from there, but I'd like to be able to do that and keep a history from Nextcloud PhoneTrack app, that would be great. Anyone has any idea if this can be done? How to do it? Any alternatives?

23
1
submitted 2 years ago by [email protected] to c/[email protected]

I have a subscription of Family and Friends on the site tab.digital. This would allow me to add apps to my nextcloud. One of the apps I have been most excited about has been the News app, which can administrate open subscription feeds like RSS. However, I have a couple issues.

First of all, I've been notified that the app is unstable on my Family and Friends subscription from a dialogue box. I don't know if that is due to me having the wrong subscription or whether it has to do with the app itself being unstable.

So far I've ignored that warning, because I can risk the service failing. I'll just have to contact the provider to reset in that case.

I have sent an email to the provider, but I expect an response on monday so It's kind of long to wait.

Does anybody have any experience with News app on Nextcloud or with tab.digital?

24
1
submitted 2 years ago by [email protected] to c/[email protected]

"It is our mission to put you back in control over your data. While not everybody can run their own Nextcloud server, hundreds of thousands of people do. Making it easier for them to keep their data safe is important. If you are one of them, Nextcloud Backup is for you!

With Nextcloud Backup, you can find a friend or family member who has their own Nextcloud server and ask them to create a user account for you. Then, you can setup Backup to regularly store compressed, encrypted backups of your data on their Nextcloud server! If something goes wrong, you can restore your Nextcloud, or even bring back individual files and folders. Of course, it might make sense to, in exchange, create an account for them on your server to store their backups!

What makes Nextcloud Backup different from other backup solutions? Its ease of use! If you are using a backup technology that you are comfortable with, keep using it. Nextcloud Backup is for those users who have found it difficult and time consuming to setup another backup solution."

25
1
submitted 3 years ago by [email protected] to c/[email protected]
view more: next ›

nextcloud

660 readers
1 users here now

Nextcloud is a suite of client-server software for creating and using file hosting services.

https://nextcloud.com

https://github.com/nextcloud

IRC: #nextcloud on libera.chat
Matrix: #Nextcloud:matrix.org

Other Nextcloud communities on Lemmy

founded 4 years ago
MODERATORS