- [Win]+R
- msconfig [Enter]
- Disable the following services:
Koozali ownCloud
Repair
cd .../html
sudo -u www scl enable php56 'php occ'
sudo -u www scl enable php56 'php console.php files:scan --all'
sudo -u www scl enable php56 'php occ maintenance:repair'
find . -name *.part
find . -name *.part -exec rm {} \;
Disk usage
cd .../html/data/{account}
du -sh
Disk usage - Live Monitoring
while true
do du -sk {folder}
sleep 2
done
while true; do du -sk {folder}; sleep 2; done
Log File tail -f .../html/data/owncloud.log tail -f /var/log/httpd/access_log Maintenance modes occ maintenance:mode [--on] [--off] occ maintenance:singleuser [--on] [--off] sudo -u www scl enable php56 'php occ maintenance:singleuser --on' sudo -u www scl enable php56 'php occ maintenance:singleuser --off' Alternatively edit "config/config.php" and set maintenance to "true". Maintenance mode locks the sessions of all logged-in users, including administrators, and displays a status screen warning that the server is in maintenance mode. Users who are not already logged in cannot log in until maintenance mode is turned off. When you take the server out of maintenance mode logged-in users must refresh their Web browsers to continue working. Putting your ownCloud server into single-user mode allows admins to log in and work, but not ordinary users. This is useful for performing maintenance and troubleshooting on a running server. Snapshot Restore sudo -u www scl enable php56 'php occ maintenance:data-fingerprint' This tells the desktop and mobile clients that a server backup has been restored. Users will be prompted to resolve any conflicts between newer and older file versions. Files on the server that were deleted on the client will make their way to the client. However, newer files on the client created after the backup would normally be deleted. By running the above command, users will be prompted what to do with these files: upload(= sync) or delete. File locks Stale file locks should be automatically cleared by the AJAX or cron job. If you have a large number of file locks in your database oc_file_locks table please do as follows: Edit "config/config.php" and set maintenance to "true". Using phpmyadmin: DELETE FROM oc_file_locks WHERE 1 Edit "config/config.php" and set maintenance to "false".
Fiddler
Fiddler is an HTTP debugging proxy server application written by Eric Lawrence, formerly a Program Manager on the Internet Explorer development team at Microsoft.
Fiddler captures HTTP and HTTPS traffic and logs it for the user to review (the latter by implementing man-in-the-middle interception using self-signed certificates).
Fiddler can also be used to modify (“fiddle with”) HTTP traffic for troubleshooting purposes as it is being sent or received. By default, traffic from Microsoft’s WinINET HTTP(S) stack is automatically directed to the proxy at runtime, but any browser or Web application (and most mobile devices) can be configured to route its traffic through Fiddler.


