Tag: Nextcloud

  • Nextcloud: Google Drive Alternative, You May want to use Nextcloud.

    All my Google Drive accounts are migrated to my Nextcloud. I had built my Nextcloud on my server and finished it. I love that Nextcloud allows me to put private data where I can store to my Server instead of Google, OneDrive, or Apple Cloud Server data. We had to pay them to hold our data. I had the office installed on Nextcloud, and now we can do word, PowerPoint, spreadsheet, and draw. And also have Nextcloud Talk on Nextcloud, which is benefits to have all in one app.

    If you want to build your own server, you can! 🙂 Here link.

    https://nextcloud.com/install/#instructions-server

    I use Cloudron, which already has a package app pre-made, and it’s much more stable and fully supported by the community and cloudron team.

    https://www.cloudron.io/store/com.nextcloud.cloudronapp.html

    Photo preview:

    google drive miragrated to my cloud now everything is here and I am no longer paying google.

    App list for my cloud
    My photos (Memories)
    nextcloud Talk
    App Marketplace in Nextcloud

  • How to Set up Nextcloud with Richard Applegate Repo with Portainer?

    So easy, I recommend you guy to do use Repo and then enjoy the services you use.

    1. Open my git repo Nextcloud to copy all the environment variables, or you will get an error.
    2. Go to your Portainer site, then go to create stack.
    3. click git repo, and copy and paste my Nextcloud repo, https://gitlab.richardapplegate.io/docker/nextcloud.git
    4. Scroll Down until Environments variables and paste all environment variables
    5. Start the services and go check your Nextcloud http://yourIP:Port
    6. If you want proxy Services Coming soon for tutorial.

  • Nextcloud: Server has no maintenance window start time configured. Error.

    Nextcloud Version: 28.0.3

    There’s a link in the warning message to the documentation

    You have to add the following line to your config.php:'maintenance_window_start' => 1,

    Nextcloud Documentation:
    https://docs.nextcloud.com/server/28/go.php?to=admin-background-jobs

  • Nextcloud 28.03 : annoy error message: 4 errors in the logs since… on Portainer

    Nextcloud 28.03 : annoy error message: 4 errors in the logs since… on Portainer

    Delete Nextcoud.log to fix the error, but it will come back again and make sure you fix the error, so it won’t pop up again. This is similar to the engine light.

    Follow this command line

    After deleting the logs, Checks have now passed.

  • Nextcloud After Update and get this Error Message. I am Use Portainer, Docker.

    Nextcloud After Update and get this Error Message. I am Use Portainer, Docker.

    Error Message:

    Go to Portainer Web and log in with your admin account. Then select the correct environment server. Then go to Nextcloud Container to enter the console.

    Please make sure you change the user root to www-data, then connect.

    Now you can see that you have a terminal on your webgui and fill out this command line.

    php occ db:add-missing-indices
    Sucess and now Error gone.

    Before:

    After

  • How to build Redis on Portainer (Stacks) and attach to Nextcloud docker network

    I have developed Redis for my Nextcloud to prevent file locking errors, thereby facilitating smooth uploads and enabling 24/7 usage instead of a failure to upload.

    Lets start by creating a network.

    docker network create redis

    Then go Portainer to create stacks.

    Portainer site → login admin account → stacks → add stacks

    version: '3.3'
    services:
      redis:
        container_name: redis
        image: redis
        networks:
          - redis
        restart: unless-stopped
        command: redis-server --requirepass KWPvQ9VQ%V3KKShgg%SDq
    networks:
      redis:
        external: true

    Deploy the stack and this app is now online. Make sure you put Nextcloud config to connect to the Redis server we created.

    config.php – added my sever Redis information going in Nextcloud’s config.php
      'memcache.local' => '\\OC\\Memcache\\APCu',
      'filelocking.enabled' => true,
      'memcache.locking' => '\\OC\\Memcache\\Redis',
      'redis' =>
      array (
        'host' => 'redis',
        'port' => 6379,
        'timeout' => 0.0,
        'password' => 'KWPvQ9VQ%V3KKShgg%SDq',
      ),

    You’re now ready to use Redis with your Nextcloud.