Nextcloud 11 is out, time to get updated!

Did that some hours ago.
And it works pretty well!
Just used web updater this time instead of occ command.
Did backups before and laid-back while updating.

Thumbs up!!! :blush:

Running raspbian on a Pi3.
DB is mysql on NAS station.

Happy :heart_eyes:

btw. Any chance to create a tweet from here? Without copy&paste to Twitter stuff?

1 Like

Twitter, is that open source? Does it keep your data private?

Maybe I did not wrote my intention in detail.
I want to post a tweet by clicking somewhere in the forums.

And for sure Twitter is closed and my posted data at twitter does not need to be private.
Otherwise I wouldnโ€™t share it with twitter :wink:

Sorry, I forgot the smileys. Iโ€™m a bit pissed currently because many websites and services ask you to rate their service, like, share or interact somehow with their social media account. I just want to buy something, hire a car, book a hotel, โ€ฆ

So Iโ€™m quite happy here that you are not social-media-buttoned. However, the Nextclouders will probably appreciate if you share your update experience via social media :wink:

Totally Happy Here! The update took me almost 2 hours because of being very secure in getting the upgrade done. I have included as an help for others my commands as follows:

Put NextCloud in Maintenance Mode
sudo -u www-data php /var/www/nextcloud/occ maintenance:mode --on

Download NextCloud version 11.0.0 to the /tmp directory:
cd /tmp
wget https://download.nextcloud.com/server/releases/nextcloud-11.0.0.tar.bz2

Unpack the downloaded file:
sudo tar xjf nextcloud-11.0.0.tar.bz2

Stop de web server:
sudo systemctl stop apache2

Rename the current NextCloud directory:
sudo mv /var/www/nextcloud /var/www/nextcloud-old

Move the new NextCloud directory to the web server:
sudo mv /tmp/nextcloud /var/www/nextcloud

Copy the config.php file from the old to the new installation:
sudo cp /var/www/nextcloud-old/config/config.php /var/www/nextcloud/config/config.php

The data directory is on /media/d1/nextcloud directory this is reflected in config.php so nothing has to be done.

Adjust ownership and permissions:
sudo chown -R www-data:www-data /var/www/nextcloud
sudo find /var/www/nextcloud/ -type d -exec chmod 750 {} ;
sudo find /var/www/nextcloud/ -type f -exec chmod 640 {} ;

Restart the webserver:
sudo systemctl start apache2

Now start the upgrade
sudo -u www-data php /var/www/nextcloud/occ upgrade

Disable maintenance mode:
sudo -u www-data php /var/www/nextcloud/occ maintenance:mode --off

Remove the NextCloud 10.0.0 directory or wait a while to be sureโ€ฆ:
sudo rm /var/www/nextcloud-old

Manually enable calendar and contacts apps. It Works Great!

Many Thanks, Much Appreciated!!! Have I forgotten something?

โ€ฆ tooks me hardly 2 minutes with the web UI updater to do a very secure upgrade :slight_smile: