How to Use Vultr's ownCloud Marketplace Application

Updated on 12 December, 2025
Guide
Install Vultr’s ownCloud app and configure SSL, storage, sync clients, backups, and performance settings.
How to Use Vultr's ownCloud Marketplace Application header image

ownCloud is an open-source file hosting and synchronization platform that enables secure storage, sharing, and collaboration on files across devices. It provides features like file versioning, calendar and contacts integration, and extensibility through apps, while giving you complete control over your data. The Vultr Marketplace provides a pre-configured ownCloud instance on Ubuntu with Nginx, PHP, and MySQL, enabling quick deployment and setup on a Vultr server.

This guide explains deploying and using Vultr's ownCloud Marketplace Application. You will deploy an instance, configure DNS and SSL, access the web interface, manage files and users, and implement best practices for production deployments.

Deploy Vultr's ownCloud Marketplace Application

  1. Log in to your Vultr Customer Portal and click the Deploy Server button.

  2. Select your preferred server type.

  3. Choose a server location.

  4. Select a server plan with at least 1GB RAM and 1 CPU core for personal use, or 2GB RAM and 2 CPU cores for team deployments.

  5. Click the Configure button to proceed.

  6. Under Marketplace Apps, search for ownCloud and select it as the Marketplace Application.

  7. Select the Limited Login option from the Additional Features section to create a limited user with sudo access.

  8. Review your configurations and click the Deploy Now button to start deployment.

    Note
    It may take up to 10 minutes for your server to finish installing ownCloud.
  9. After the instance shows the status of Running, navigate to the Server Overview page and copy the SSH connection details.

Initial Setup and Configuration

After deployment, configure DNS, verify the installation, and secure your ownCloud instance with SSL/TLS before accessing the web interface.

  1. Create a DNS A record pointing to your server's IP address, such as owncloud.example.com.

  2. Connect to your Vultr server instance over SSH using the connection details from the Server Overview page.

Verify ownCloud Installation

  1. Check the Nginx service status.

    console
    $ sudo systemctl status nginx
    

    The service should show as active (running).

  2. Check the PHP-FPM service status.

    console
    $ sudo systemctl status php*-fpm
    
  3. Check the MySQL service status.

    console
    $ sudo systemctl status mysql
    
  4. Verify ownCloud files exist.

    console
    $ ls -la /var/www/owncloud
    
  5. Access ownCloud by visiting https://YOUR_SERVER_IP in a web browser.

    You'll see a browser warning because of the self-signed certificate. Bypass it to continue.

Configure Firewall Security

Secure your server by configuring the firewall to allow only necessary traffic.

  1. Allow SSH connections.

    console
    $ sudo ufw allow OpenSSH
    
  2. Allow HTTP and HTTPS traffic.

    console
    $ sudo ufw allow 80/tcp
    $ sudo ufw allow 443/tcp
    
  3. Enable the firewall.

    console
    $ sudo ufw enable
    
  4. Verify firewall status.

    console
    $ sudo ufw status
    

Secure ownCloud with SSL/TLS

Protect your ownCloud instance with HTTPS using Let's Encrypt certificates via Certbot.

  1. Install an SSL certificate with Certbot.

    console
    $ sudo certbot --nginx --redirect --agree-tos --no-eff-email -d owncloud.example.com -m admin@example.com
    

    Replace owncloud.example.com and admin@example.com with your domain and email.

  2. Update the trusted domains configuration.

    console
    $ sudo nano /var/www/owncloud/config/config.php
    

    Update the trusted_domains array:

    php
    'trusted_domains' =>
    array (
        0 => 'owncloud.example.com',
    ),
    

    Save and close the file.

  3. Restart Nginx to apply changes.

    console
    $ sudo systemctl restart nginx
    
  4. Verify SSL certificate auto-renewal.

    console
    $ sudo certbot renew --dry-run
    
  5. Access your site securely at https://owncloud.example.com.

Note
If you prefer a commercial SSL certificate, upload your certificate files to /etc/nginx/ssl/server.crt and /etc/nginx/ssl/server.key, then restart Nginx.

Access ownCloud

Log in and start using your personal cloud storage.

  1. Navigate to your ownCloud domain.

    https://owncloud.example.com
  2. Log in with the credentials from the App Instructions section in the Server Overview page.

  3. From the ownCloud interface, you can:

    • Upload and manage files and folders
    • Share files with public or password-protected links
    • Sync files across devices using desktop and mobile clients
    • Access calendar and contacts apps (if enabled)

Explore ownCloud Features

ownCloud provides comprehensive file management and collaboration capabilities.

File Management

  1. Upload files using drag-and-drop or the upload button.

  2. Create folders to organize your files.

  3. Share files with:

    • Internal users
    • Public links (with optional password and expiration)
    • Email invitations
  4. Access file versioning to restore previous versions.

Desktop and Mobile Sync

  1. Download the ownCloud desktop client from owncloud.com/download.

  2. Enter your server URL: https://owncloud.example.com

  3. Log in with your credentials.

  4. Select folders to sync between devices.

  5. Mobile apps are available for iOS and Android.

User Management

  1. Log in as admin and navigate to Settings > Users.

  2. Create new users with specific quotas.

  3. Create groups for team organization.

  4. Assign storage quotas per user or group.

Apps and Extensions

  1. Navigate to Settings > Apps.

  2. Enable additional features like:

    • Calendar
    • Contacts
    • External storage
    • Encryption

Access Tools and Utilities

Your ownCloud instance includes pre-installed tools for server management.

Database Access

  1. Access MySQL directly.

    console
    $ sudo mysql -u root
    
  2. The root password is stored in /root/.my.cnf.

Cockpit Web Panel

  1. Access Cockpit at:

    https://owncloud.example.com:9080/
  2. Log in with the system credentials from the Server Overview page.

  3. Monitor resources, manage services, and view logs.

  4. To disable Cockpit:

    console
    $ sudo systemctl disable --now cockpit.socket
    

Vultr Helper Scripts

  1. Reset Nginx configuration if needed.

    console
    $ sudo /opt/vultr/fix-vhost.sh
    
  2. Check ownCloud and system versions.

    console
    $ sudo /opt/vultr/version.sh
    

Backup Script

  1. Run the built-in backup script.

    console
    $ sudo bash /root/backup-owncloud.sh
    

    Ensure sufficient disk space before running.

Best Practices and Configuration

Implement these recommendations to ensure your ownCloud instance runs securely and efficiently.

Security Hardening

  1. Enable server-side encryption in Settings > Admin > Encryption.

  2. Enforce strong passwords for all users.

  3. Enable brute force protection.

    console
    $ sudo -u www-data php /var/www/owncloud/occ config:system:set auth.bruteforce.protection.enabled --value=true
    
  4. Keep ownCloud updated.

    console
    $ sudo -u www-data php /var/www/owncloud/occ upgrade
    
  5. Regularly update the system.

    console
    $ sudo apt update
    $ sudo apt upgrade -y
    

Performance Optimization

  1. Enable memory caching with APCu.

    console
    $ sudo nano /var/www/owncloud/config/config.php
    

    Add:

    php
    'memcache.local' => '\OC\Memcache\APCu',
    
  2. Configure background jobs for cron execution.

    console
    $ sudo crontab -u www-data -e
    

    Add:

    */15 * * * * php /var/www/owncloud/occ system:cron
  3. Set cron as the background job method in Settings > Admin > General.

Backup Configuration

  1. Back up ownCloud data and database.

    console
    $ sudo tar -czf /root/owncloud-data-$(date +%F).tar.gz /var/www/owncloud/data
    $ sudo tar -czf /root/owncloud-config-$(date +%F).tar.gz /var/www/owncloud/config
    $ sudo mysqldump -u root owncloud_db > /root/owncloud-db-$(date +%F).sql
    
  2. Schedule automated backups with cron.

  3. Store backups offsite using Vultr Object Storage or similar.

Troubleshooting

This section covers common issues and diagnostic commands.

Check Service Status

  1. Verify all services are running.

    console
    $ sudo systemctl status nginx
    $ sudo systemctl status php*-fpm
    $ sudo systemctl status mysql
    
  2. View Nginx error logs.

    console
    $ sudo tail -f /var/log/nginx/error.log
    
  3. View ownCloud logs.

    console
    $ sudo tail -f /var/www/owncloud/data/owncloud.log
    

Common Issues

"Access through untrusted domain" Error

  1. Edit the config file.

    console
    $ sudo nano /var/www/owncloud/config/config.php
    
  2. Add your domain to trusted_domains array.

    php
    'trusted_domains' => [
        0 => 'owncloud.example.com',
    ],
    
  3. Restart Nginx.

    console
    $ sudo systemctl restart nginx
    

Upload Size Limits

  1. Edit PHP configuration.

    console
    $ sudo nano /etc/php/*/fpm/php.ini
    
  2. Update these values:

    ini
    upload_max_filesize = 512M
    post_max_size = 512M
    
  3. Edit Nginx configuration.

    console
    $ sudo nano /etc/nginx/sites-available/owncloud
    

    Add inside server block:

    nginx
    client_max_body_size 512M;
    
  4. Restart services.

    console
    $ sudo systemctl restart php*-fpm
    $ sudo systemctl restart nginx
    

Database Connection Errors

  1. Verify MySQL is running.

    console
    $ sudo systemctl status mysql
    
  2. Check database credentials in /var/www/owncloud/config/config.php.

Sync Client Connection Issues

  1. Verify SSL certificate is valid.

    console
    $ sudo certbot certificates
    
  2. Ensure firewall allows HTTPS.

    console
    $ sudo ufw status | grep 443
    

Use Cases

ownCloud excels in various file hosting scenarios:

  • Private Cloud Storage: Store and access personal or business files across devices with full control over data privacy and location.
  • Team Collaboration: Share documents, manage calendars, and collaborate with built-in ownCloud apps and real-time editing.
  • Secure File Sharing: Share files with external parties using password-protected links and expiration dates.
  • Data Sovereignty and Compliance: Meet regulatory requirements by hosting data in specific geographic regions on your own infrastructure.
  • Remote Access: Access your files securely from anywhere using web, desktop, or mobile clients.
  • Backup and Sync: Automatically sync files between computers and devices with versioning for data recovery.

Conclusion

In this guide, you deployed Vultr's ownCloud Marketplace Application and configured it for production use. You secured the server with firewall rules and SSL/TLS certificates, configured trusted domains, explored file management and sync capabilities, and implemented best practices for security, performance, and backups. With ownCloud's self-hosted cloud storage features and Vultr's infrastructure, you can manage files, collaborate with teams, and maintain complete control over your data.

Comments