Changes between Version 7 and Version 8 of owncloud-admin
- Timestamp:
- Sep 7, 2016, 11:06:27 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
owncloud-admin
v7 v8 34 34 However, version 8, while still supported by ownCloud, is no longer in the Debian repository. So, to do a minor upgrade, we will have to switch from the debian ownCloud package to ownCloud source package. 35 35 36 To ensure all database udpates have been run, su to the www-data user and then: 36 Steps to upgrade from source: 37 38 * Visit https://owncloud.org/changelog/ and download the appropriate version to /root using wget and unpack 39 * Create symlinks that mirror the symlinks in /var/www/owncloud 40 * Backup the database with: 37 41 {{{ 42 su -c "pg_dump owncloud" www-data > owncloud.sql 43 }}} 44 * Ensure the dump completed successfully: 45 {{{ 46 tail owncloud.sql 47 }}} 48 * Make a backup of the current owncloud installation: 49 {{{ 50 mv /var/www/owncloud /var/www/owncloud.version.n.n.n 51 }}} 52 * Move the new copy in: 53 {{{ 54 mv /root/owncloud /var/www/ 55 }}} 56 * Ensure all database udpates have been run, su to the www-data user and then: 57 {{{ 58 su - www-data 38 59 cd /var/www/owncloud 39 60 php occ upgrade