If you are currently running the latest image without issues, then you don't need to take any action. If you have updated to the latest image and nextcloud is not working this post has all the info you should need https://info.linuxserver.io/issues/2023-06-25-nextcloud/ and if you follo
Recommended by
JonathanM
##Backup current nextcloud install
docker exec -it nextcloud mv /config/www/nextcloud /config/www/nextcloud-backup
##Grab newest nextcloud release and unpack it
docker exec -it nextcloud wget https://download.nextcloud.com/server/releases/latest.tar.bz2 -P /config
docker exec -it nextcloud tar -xvf /config/latest.tar.bz2 -C /config/www
##Copy across old config.php from backup
docker exec -it nextcloud cp /config/www/nextcloud-backup/config/config.php /config/www/nextcloud/config/config.php
##Now Restart docker container
docker restart nextcloud
##Perform upgrade
docker exec -it nextcloud occ upgrade
##Turn off maintenance mode
docker exec -it nextcloud occ maintenance:mode --off
## Now Restart docker container
docker restart nextcloud
Once all is confirmed as working:
##Remove backup folder
docker exec -it nextcloud rm -rf /config/www/nextcloud-backup
##Remove Nextcloud tar file
docker exec -it nextcloud rm /config/latest.tar.bz2
If you ask for help in the appropriate threads then yes people will help you. But nobody is going to walk you through the whole setup as that is quite a large undertaking.
I did know who to use them already use them in Windows
I mean the folder setup only
Thanks CHBMB
there is no "issue" and there never was any "issue" with the lsio owncloud beta either, change the location during setup.
http://imgur.com/8Pus7FT
there is no "issue" and there never was any "issue" with the lsio owncloud beta either, change the location during setup.
http://imgur.com/8Pus7FT
I created the database on a mariadb container and then pulled the nextcloud docker, but it will not start...
Is there anything else I needed to do to get this going?
Thanks for your help!
Sent from my Nexus 6P using Tapatalk
Logs are helpful. As well as how you've got this setup. And did you read the link and change binlogging on MariaDB as detailed in the link?
Sent from my LG-H815 using Tapatalk
Logs are helpful. As well as how you've got this setup. And did you read the link and change binlogging on MariaDB as detailed in the link?
Sent from my LG-H815 using Tapatalk
Tried to install using community applications and got a screenful of error messages. Screenshot attached. I updated the Community applications to the latest version before clicking on the add button. Running UR 6.1.9
If I was going to take a guess, either unRaid lost track of your flash drive, or your flash is corrupted. Its not CA Diagnostics should tell the story
I just used CA to install Linuxserver.io's nginx docker without any problems. Could it be that the flash drive is only a problem for the nextcloud docker?
Looked a bit closer. Those errors are from the repositories. Since you're using CA, there is zero reason to use repositories.
Go to Docker - Docker Repositories and get rid of everything in there.
Thank you Squid. That fixed it. I did not realize that CA eliminated the need to have the repositories entered on the docker page.
Since April 2015. (First release of Community Repositories)
Thanks for this, was just looking in to Owncloud, discovered it was abandoned by most of it's devs in favor of nextcloud. I think I'll wait to switch over from a traditional cloud provider though for my data until you're not calling it beta any more, though.
Especially if conversion won't be easy/supported down the road.
Do you plan to integrate Mariadb like I think I saw was done with the Owncloud docker?
Thanks for this, was just looking in to Owncloud, discovered it was abandoned by most of it's devs in favor of nextcloud. I think I'll wait to switch over from a traditional cloud provider though for my data until you're not calling it beta any more, though.
Especially if conversion won't be easy/supported down the road.
Do you plan to integrate Mariadb like I think I saw was done with the Owncloud docker?
This is so awesome, im not good at databases so if I could virtually nudge for the integration of Maria dB that would be great.
Sent from my SAMSUNG-SM-N920A using Tapatalk
I've been getting 504 Gateway Time-out error after providing the admin and mysql credentials on a brand new install.
My unraid environment
ip: 192.168.0.200
version: 6.1.9
Here are the steps I've taken.
[*]CREATE USER 'nextcloud'@'localhost' IDENTIFIED BY 'xxxxxx';
[*]CREATE DATABASE IF NOT EXISTS nextcloud;
[*]GRANT ALL PRIVILEGES ON nextcloud.* TO 'nextcloud'@'localhost' IDENTIFIED BY 'xxxxxx';
[*]SET BINLOG_FORMAT = MIXED;
[*]exit
[*]
https://192.168.0.200/
(and provide admin user and db wizard setup)
[*]then I get the 504 gateway error
[*]when I reload the page I get the setup wizard form again
I can see the various tables being created prefixed with "oc_". I can also see the correct credentials are saved in nextcloud's 'config.php'. I have tried mariadb as well as mysql docker containers. would anyone know a way around this problem?
Thanks
You can post now and register later.
If you have an account,
sign in now
to post with your account.
Note:
Your post will require moderator approval before it will be visible.