Difference between revisions of "CentOS 7.x Owncloud maintenance"

From Notes_Wiki
m
m
Line 3: Line 3:


==Owncloud regular maintenance using cron script==
==Owncloud regular maintenance using cron script==
For regular owncloud maintenance cron job create '<tt>/etc/cron.daily/owncloud-maintenance.sh</tt>' with
For regular owncloud maintenance cron job create '<tt>/etc/cron.hourly/owncloud-maintenance.sh</tt>' with
<pre>
<pre>
     #!/bin/bash
     #!/bin/bash
Line 9: Line 9:
     sudo -u daemon /opt/owncloud-10.1.0-1/php/bin/php -f cron.php
     sudo -u daemon /opt/owncloud-10.1.0-1/php/bin/php -f cron.php
</pre>
</pre>
Note in case of source based installation user name would perhaps be apache and not daemon.  Also note that above example assumes bitnami stack based installation.  For source based installation cd might be required to /var/www/html/owncloud folder.  '''For large installations having several TB of data maintenance can go on for more than a day''', in such cases run maintenance manually or via /etc/cron.weekly or /etc/cron.monthly instead.
Note in case of source based installation user name would perhaps be apache and not daemon.  Also note that above example assumes bitnami stack based installation.  For source based installation cd might be required to /var/www/html/owncloud folder.  '''For large installations having several TB of data maintenance can go on for more than a day if not run frequently.'''


Refer:
Refer:

Revision as of 07:55, 19 March 2021

<yambe:breadcrumb self="Owncloud maintenance">CentOS_7.x_owncloud|Owncloud</yambe:breadcrumb>

CentOS 7.x Owncloud maintenance

Owncloud regular maintenance using cron script

For regular owncloud maintenance cron job create '/etc/cron.hourly/owncloud-maintenance.sh' with

    #!/bin/bash
    cd /opt/owncloud-10.1.0-1/apps/owncloud/htdocs
    sudo -u daemon /opt/owncloud-10.1.0-1/php/bin/php -f cron.php

Note in case of source based installation user name would perhaps be apache and not daemon. Also note that above example assumes bitnami stack based installation. For source based installation cd might be required to /var/www/html/owncloud folder. For large installations having several TB of data maintenance can go on for more than a day if not run frequently.

Refer:


Remove deleted files from various users trashbin

To remove deleted files from trashbin of all users use:

  cd /opt/owncloud-10.0.10-4/apps/owncloud/htdocs
  sudo -u daemon /opt/owncloud-10.0.10-4/php/bin/php occ trashbin:cleanup

Refer:


Remove older versions of various files

Owncloud also has in-built versioning to maintain old versions. This can use quite a lot of space. If you want to remove these old versions to reclaim space (esp. if there are fairly frequent and adequate backups), use:

  cd /opt/owncloud-10.0.10-4/apps/owncloud/htdocs
  sudo -u daemon /opt/owncloud-10.0.10-4/php/bin/php occ versions:cleanup

Refer:


<yambe:breadcrumb self="Owncloud maintenance">CentOS_7.x_owncloud|Owncloud</yambe:breadcrumb>