1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

owncloud 10.0.7 への update手順

Last updated at Posted at 2019-06-26

to owncloud 10.0.7

IDCF上のowncloudをアップデートしたときの自分用の手順書メモ

backup

cd /var/www/html/
mv owncloud owncloud.old

wget

wget -O /tmp/owncloud.tar.bz2 'https://download.owncloud.org/community/owncloud-10.0.7.tar.bz2'

unpack

tar xvf /tmp/owncloud.tar.bz2

data

cp owncloud.old/config/config.php owncloud/config
chown -R apache:apache owncloud
rm -r owncloud/data
mv owncloud.old/data owncloud/data
sudo -u apache owncloud/occ upgrade

finally

rm -fr owncloud.old

if...

ownCloud is in maintenance mode - no app have been loaded

owncloud/config/config.php
'maintenance' => true,

owncloud/config/config.php
'maintenance' => false,
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?