Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content
  • Node and PHP, upgrade process within container

    Nextcloud
    4
    0 Votes
    4 Posts
    54 Views
    nebulonN

    Yes that is handled by app package updates. We usually stay as close to what the upstream app recommends. Through the containerization, we can have different php (and other languages/framework/library) versions on the same system, depending on the individual app. This also means if you find a package using a wrong or by now outdated version, please let us know in that app section in the forum and we will see if and how to update those accordingly.

  • Cloudron on 18.04.5 - GLIBC_2.28 not found (required by node)

    Solved Support
    12
    0 Votes
    12 Posts
    8k Views
    nebulonN

    Also for others to come here, to get back up on Ubuntu 18.04 run the following commands via SSH:

    mkdir -p /usr/local/node-16.18.1 curl -sL https://nodejs.org/dist/v16.18.1/node-v16.18.1-linux-x64.tar.gz -o /tmp/node.tar.gz tar zxvf /tmp/node.tar.gz --strip-components=1 -C /usr/local/node-16.18.1 rm /tmp/node.tar.gz ln -sf /usr/local/node-16.18.1/bin/node /usr/bin/node ln -sf /usr/local/node-16.18.1/bin/npm /usr/bin/npm systemctl restart box

    Then the system should be working again, however for the 7.5 update ubuntu has to be upgraded first.