Difference between revisions of "Nextcloud"

From BITPlan Wiki
Jump to navigation Jump to search
(Created page with "= Upgrading from owncloud 9.0.0 to latest Nextcloud = It 2017-12 and we had been using owncloud 9.0.0 for some time on our old server. Now we wanted to migrate to Nextcloud.")
 
Line 2: Line 2:
 
It 2017-12 and we had been using owncloud 9.0.0 for some time on our old server.  
 
It 2017-12 and we had been using owncloud 9.0.0 for some time on our old server.  
 
Now we wanted to migrate to Nextcloud.
 
Now we wanted to migrate to Nextcloud.
 +
 +
== Step 1 ==
 +
Copying everything from old server to new server
 +
<source lang='bash'>
 +
/usr/share$ tar cvfz owncloud.tgz owncloud/
 +
</source>
 +
# copy the tgz file to the new server and unpack at /usr/share
 +
# to a mysqlump of the owncloud mysql database on the old server
 +
# create a new owncloud mysql database on the new server
 +
# use the dump to restore the data on the new server
 +
# copy the apache configuration from the old server to the new server and activate it

Revision as of 20:31, 28 December 2017

Upgrading from owncloud 9.0.0 to latest Nextcloud

It 2017-12 and we had been using owncloud 9.0.0 for some time on our old server. Now we wanted to migrate to Nextcloud.

Step 1

Copying everything from old server to new server

/usr/share$ tar cvfz owncloud.tgz owncloud/
  1. copy the tgz file to the new server and unpack at /usr/share
  2. to a mysqlump of the owncloud mysql database on the old server
  3. create a new owncloud mysql database on the new server
  4. use the dump to restore the data on the new server
  5. copy the apache configuration from the old server to the new server and activate it