Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Network not found after stopping the workspace #14

Open
alessandro-newzoo opened this issue Sep 27, 2024 · 2 comments
Open

Network not found after stopping the workspace #14

alessandro-newzoo opened this issue Sep 27, 2024 · 2 comments

Comments

@alessandro-newzoo
Copy link

Hello,

I know the article mentions this error will happen if you put lando start in the init command, but it's happening even if you don't.

I'm starting Lando manually after the workspace has started, and everything works fine. But then, if I stop the workspace, the next time I boot it up and do lando start in the terminal, this error will pop up and Lando won't start:

Error response from daemon: network 5ccbb8fc97be9b4e3ecde2607463f04ab2d418bc3830da84f5c61becdc834c0c not found

$ lando start
Let's get this party started! Starting app newzoo...
WARN[0000] /home/gitpod/.lando/compose/newzoo/globals-0.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/mounts-0.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/version-0.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/appserver-0.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/appserver-1.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/appserver-2.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/appserver-3.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/database-0.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/database-1.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/database-2.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/database-3.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/database-4.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/database-5.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/phpmyadmin-0.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/phpmyadmin-1.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/phpmyadmin-2.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/phpmyadmin-3.yml: `version` is obsolete 
[+] Running 0/3
 ⠸ Container newzoo_appserver_1   Starting                                        0.4s 
 ⠸ Container newzoo_database_1    Starting                                        0.4s 
 ⠸ Container newzoo_phpmyadmin_1  Starting                                        0.4s 
Error response from daemon: network 5ccbb8fc97be9b4e3ecde2607463f04ab2d418bc3830da84f5c61becdc834c0c not found
ERROR ==> 

██╗   ██╗██╗  ██╗     ██████╗ ██╗  ██╗██╗
██║   ██║██║  ██║    ██╔═══██╗██║  ██║██║
██║   ██║███████║    ██║   ██║███████║██║
██║   ██║██╔══██║    ██║   ██║██╔══██║╚═╝
╚██████╔╝██║  ██║    ╚██████╔╝██║  ██║██╗
 ╚═════╝ ╚═╝  ╚═╝     ╚═════╝ ╚═╝  ╚═╝╚═╝
                                         

An unrecoverable error occurred while starting up your app!

.gitpod.yml:

image:
  file: .gitpod.Dockerfile

tasks:
  - name: Init
    init: |
      echo "WP_SITEURL=$(gp url 38080)" > .lando/WP_SITEURL.env
      compiled_dir="theme/lib/vendor/dwoo/dwoo/lib/compiled/"
      if [[ ! -d ${compiled_dir} ]]; then
        mkdir -p "${compiled_dir}"
      fi
      chmod 777 "$compiled_dir"

additionalRepositories:
  - url: https://github.com/newzoo-com/theme
    checkoutLocation: gitpod-lando/theme

ports:
  - name: WordPress
    port: 38080
  - name: phpMyAdmin
    port: 32778

vscode:
  extensions:
    - ms-azuretools.vscode-docker
    - mrmlnc.vscode-apache
    - ihatetomatoes.gsap3-snippets
    - donjayamanne.jquerysnippets
    - usernamehw.commands
    - vunguyentuan.vscode-css-variables
    - mrmlnc.vscode-less
    - bmewburn.vscode-intelephense-client
    - vunguyentuan.vscode-postcss
    - aswinkumar863.smarty-template-support
    - bradlc.vscode-tailwindcss
    - mblode.twig-language-2
    - jdcreations.timber-snippets
    - mrmlnc.vscode-duplicate
    - gruntfuggly.todo-tree
    - xdebug.php-debug

.lando.yml:

name: newzoo
recipe: wordpress
config:
  webroot: wordpress
  via: apache:2.4
  php: "8.2"
  database: mariadb:10.4
  xdebug: true
  config:
    php: .lando/.lando.php.ini

env_file:
  - .lando/WP_SITEURL.env

keys:
  - id_rsa

services:
  appserver:
    ssl: true
    sslExpose: true
    overrides:
      ports:
        - 38080:80
        - 38443:443
      volumes:
        # Mount theme
        - ${PWD}/theme:/app/wordpress/wp-content/themes/newzoo
    build_as_root:
      - curl -sL curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
      - apt-get install -y nodejs
    build:
      # [local] Build composer
      - echo "\n \e[36m[local] Running composer install...\e[0m \n"
      - cd wordpress/wp-content/themes/newzoo && composer install --no-progress --no-interaction
      # [local] Build npm
      - echo "\n \e[36m[local] Running npm install...\e[0m \n"
      - cd wordpress/wp-content/themes/newzoo && npm i --no-progress --silent --no-fund
    run: 
      # Fetch rankings
      - echo "\n \e[36m[local] Fetching rankings...\e[0m \n"
      - cd wordpress && wp fetch-rankings
      # Turn off WP_DEBUG
      - echo "\n \e[36m[local] Turning off WP_DEBUG...\e[0m \n"
      - wp config set WP_DEBUG false --raw --path=/app/wordpress
      # Disable plugins
      - echo "\n \e[36m[local] Deactivating WP Rocket and Cloudflare...\e[0m \n"
      - wp plugin deactivate wp-rocket --path=/app/wordpress
      - wp plugin deactivate cloudflare --path=/app/wordpress
      # Show URL
      - echo $WP_SITEURL
  phpmyadmin:
    type: phpmyadmin
    overrides:
      ports:
        - 32778:80
    hosts:
      - database

tooling:
  npm: # lando npm
    service: appserver
  node: # lando node
    service: appserver

.gitpod.Dockerfile:

FROM devwithlando/gitpod:1

# Use the root user to install necessary packages
USER root

# Update the package list and install sudo
RUN apt-get update && apt-get install -y sudo

# Add the PHP repository and install PHP 8.2 and common extensions
RUN apt-get update && apt-get install -y \
    software-properties-common \
    && add-apt-repository ppa:ondrej/php \
    && apt-get update \
    && DEBIAN_FRONTEND=noninteractive apt-get install -y \
    php8.2 \
    php8.2-cli \
    php8.2-bz2 \
    php8.2-curl \
    php8.2-mbstring \
    php8.2-intl \
    php8.2-fpm

# Optionally install Apache2 module for PHP
# RUN apt-get install -y libapache2-mod-php8.2 && a2enconf php8.2-fpm

# Disable older PHP versions (like PHP 8.1)
RUN apt-get purge -y php8.1*

# Clean up to reduce image size
RUN apt-get clean

# Set PHP 8.2 as the default version
RUN update-alternatives --set php /usr/bin/php8.2

# Verify PHP installation
RUN php -v

# Install Starship
RUN curl -sS https://starship.rs/install.sh | sh -s -- --yes

# Switch back to a non-root user if necessary
USER gitpod

# Install Trunk
RUN curl https://get.trunk.io -fsSL | bash -s -- -y
Logs

gitpod /workspace/gitpod-lando (main) $ lando logs
WARN[0000] /home/gitpod/.lando/compose/newzoo/globals-0.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/mounts-0.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/version-0.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/appserver-0.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/appserver-1.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/appserver-2.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/appserver-3.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/database-0.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/database-1.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/database-2.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/database-3.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/database-4.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/database-5.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/phpmyadmin-0.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/phpmyadmin-1.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/phpmyadmin-2.yml: `version` is obsolete 
WARN[0000] /home/gitpod/.lando/compose/newzoo/phpmyadmin-3.yml: `version` is obsolete 
phpmyadmin_1  | 
database_1    | 
database_1    | 
database_1    | 
database_1    |                          STARTING UP                            
database_1    | 
database_1    |          ██       █████  ███    ██ ██████   ██████             
database_1    |          ██      ██   ██ ████   ██ ██   ██ ██    ██            
database_1    |          ██      ███████ ██ ██  ██ ██   ██ ██    ██            
database_1    |          ██      ██   ██ ██  ██ ██ ██   ██ ██    ██            
phpmyadmin_1  | 
phpmyadmin_1  | 
phpmyadmin_1  |                          STARTING UP                            
database_1    |          ███████ ██   ██ ██   ████ ██████   ██████             
database_1    | 
database_1    |        The best local development tool in the galaxy!          
database_1    | 
database_1    | 
database_1    | ===============================================================
phpmyadmin_1  | 
phpmyadmin_1  |          ██       █████  ███    ██ ██████   ██████             
phpmyadmin_1  |          ██      ██   ██ ████   ██ ██   ██ ██    ██            
phpmyadmin_1  |          ██      ███████ ██ ██  ██ ██   ██ ██    ██            
phpmyadmin_1  |          ██      ██   ██ ██  ██ ██ ██   ██ ██    ██            
appserver_1   | 
appserver_1   | 
appserver_1   | 
appserver_1   |                          STARTING UP                            
appserver_1   | 
appserver_1   |          ██       █████  ███    ██ ██████   ██████             
appserver_1   |          ██      ██   ██ ████   ██ ██   ██ ██    ██            
database_1    | 
database_1    | 
database_1    | chmod: changing permissions of '/helpers/acquia-clone.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/acquia-config-symlink.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/acquia-generate-key.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/acquia-pull.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/acquia-push.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/acquia-wait-for-user.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/add-cert.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/auth.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/binding.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/docker-engine-start.sh': Operation not permitted
phpmyadmin_1  |          ███████ ██   ██ ██   ████ ██████   ██████             
phpmyadmin_1  | 
phpmyadmin_1  |        The best local development tool in the galaxy!          
phpmyadmin_1  | 
phpmyadmin_1  | 
phpmyadmin_1  | ===============================================================
phpmyadmin_1  | 
phpmyadmin_1  | 
phpmyadmin_1  | userperms 10:08:48.60 INFO  ==> Symlinked users .gitconfig.
phpmyadmin_1  | userperms 10:08:48.60 INFO  ==> This is a debian container
phpmyadmin_1  | userperms 10:08:48.60 INFO  ==> user-perms.sh kicking off as user uid=0(root) gid=0(root) groups=0(root)
phpmyadmin_1  | userperms 10:08:48.60 DEBUG ==> Lando ENVVARS set at
appserver_1   |          ██      ███████ ██ ██  ██ ██   ██ ██    ██            
appserver_1   |          ██      ██   ██ ██  ██ ██ ██   ██ ██    ██            
appserver_1   |          ███████ ██   ██ ██   ████ ██████   ██████             
appserver_1   | 
appserver_1   |        The best local development tool in the galaxy!          
appserver_1   | 
appserver_1   | 
appserver_1   | ===============================================================
appserver_1   | 
appserver_1   | 
appserver_1   | userperms 10:07:53.00 INFO  ==> Symlinked users .gitconfig.
appserver_1   | userperms 10:07:53.00 INFO  ==> This is a debian container
appserver_1   | userperms 10:07:53.00 INFO  ==> user-perms.sh kicking off as user uid=0(root) gid=0(root) groups=0(root)
appserver_1   | userperms 10:07:53.00 DEBUG ==> Lando ENVVARS set at
appserver_1   | userperms 10:07:53.01 DEBUG ==> 
appserver_1   | userperms 10:07:53.01 DEBUG ==> ========================================
database_1    | chmod: changing permissions of '/helpers/docker-engine-stop.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/generate-key.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/get-remote-url.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/install-backdrush.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/install-bee.sh': Operation not permitted
phpmyadmin_1  | userperms 10:08:48.60 DEBUG ==> 
phpmyadmin_1  | userperms 10:08:48.60 DEBUG ==> ========================================
phpmyadmin_1  | userperms 10:08:48.61 DEBUG ==> LANDO_WEBROOT_USER      : www-data
phpmyadmin_1  | userperms 10:08:48.61 DEBUG ==> LANDO_WEBROOT_GROUP     : www-data
phpmyadmin_1  | userperms 10:08:48.61 DEBUG ==> LANDO_WEBROOT_UID       : 33
phpmyadmin_1  | userperms 10:08:48.61 DEBUG ==> LANDO_WEBROOT_GID       : 33
phpmyadmin_1  | userperms 10:08:48.61 DEBUG ==> LANDO_HOST_UID          : 33333
phpmyadmin_1  | userperms 10:08:48.61 DEBUG ==> LANDO_HOST_GID          : 33333
phpmyadmin_1  | userperms 10:08:48.61 DEBUG ==> ========================================
appserver_1   | userperms 10:07:53.01 DEBUG ==> LANDO_WEBROOT_USER      : www-data
appserver_1   | userperms 10:07:53.01 DEBUG ==> LANDO_WEBROOT_GROUP     : www-data
appserver_1   | userperms 10:07:53.01 DEBUG ==> LANDO_WEBROOT_UID       : 33
appserver_1   | userperms 10:07:53.01 DEBUG ==> LANDO_WEBROOT_GID       : 33
appserver_1   | userperms 10:07:53.01 DEBUG ==> LANDO_HOST_UID          : 33333
appserver_1   | userperms 10:07:53.01 DEBUG ==> LANDO_HOST_GID          : 33333
appserver_1   | userperms 10:07:53.01 DEBUG ==> ========================================
appserver_1   | userperms 10:07:53.01 DEBUG ==> 
appserver_1   | userperms 10:07:53.02 INFO  ==> Making sure correct user:group (www-data:www-data) exists...
appserver_1   | userperms 10:07:53.04 INFO  ==> Remapping ownership to handle docker volume sharing...
appserver_1   | userperms 10:07:53.04 INFO  ==> Resetting www-data:www-data from 33:33 to 33333:33333
database_1    | chmod: changing permissions of '/helpers/install-composer.sh': Operation not permitted
phpmyadmin_1  | userperms 10:08:48.61 DEBUG ==> 
database_1    | chmod: changing permissions of '/helpers/install-docker-desktop.ps1': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/install-docker-desktop.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/install-docker-engine.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/install-render-template.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/lagoon-auth.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/lagoon-generate-key.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/lagoon-pull.sh': Operation not permitted
phpmyadmin_1  | userperms 10:08:48.61 INFO  ==> Making sure correct user:group (www-data:www-data) exists...
phpmyadmin_1  | userperms 10:08:48.63 INFO  ==> Remapping ownership to handle docker volume sharing...
database_1    | chmod: changing permissions of '/helpers/lagoon-push.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/lagoon-sql-export.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/lagoon-sql-import.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/lagoon-wait-for-user.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/lando-entrypoint.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/load-keys.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/log.sh': Operation not permitted
phpmyadmin_1  | userperms 10:08:48.64 INFO  ==> Resetting www-data:www-data from 33:33 to 33333:33333
appserver_1   | userperms 10:07:53.08 INFO  ==> www-data:www-data is now running as uid=33333(www-data) gid=33333(www-data) groups=33333(www-data)!
appserver_1   | userperms 10:07:53.08 INFO  ==> And here. we. go.
appserver_1   | userperms 10:07:53.08 INFO  ==> Doing the permission sweep.
appserver_1   | loadkeys 10:07:53.10 INFO  ==> Scanning /lando/keys for keys...
appserver_1   | loadkeys 10:07:53.10 INFO  ==> Scanning /var/www/.ssh for keys...
appserver_1   | loadkeys 10:07:53.12 INFO  ==> Found keys /user/.ssh/id_rsa
appserver_1   | loadkeys 10:07:53.12 DEBUG ==> Ensuring permissions and ownership of /user/.ssh/id_rsa...
appserver_1   | loadkeys 10:07:53.12 DEBUG ==> Checking whether /user/.ssh/id_rsa is a private key...
appserver_1   | loadkeys 10:07:53.13 DEBUG ==> Checking whether /user/.ssh/id_rsa is formatted correctly...
appserver_1   | loadkeys 10:07:53.13 INFO  ==> Using the following keys: /user/.ssh/id_rsa
appserver_1   | addcert 10:07:53.14 INFO  ==> Enabling apache ssl modz
appserver_1   | setupca 10:07:53.15 INFO  ==> Looks like you do not have a Lando CA yet! Let's set one up!
appserver_1   | setupca 10:07:53.15 INFO  ==> Trying to setup root CA with...
appserver_1   | setupca 10:07:53.15 INFO  ==> LANDO_CA_CERT: /lando/certs/lndo.site.pem
appserver_1   | setupca 10:07:53.15 INFO  ==> LANDO_CA_KEY: /lando/certs/lndo.site.key
appserver_1   | setupca 10:07:53.15 INFO  ==> /lando/certs/lndo.site.key not found... generating one
appserver_1   | Generating RSA private key, 2048 bit long modulus (2 primes)
appserver_1   | ..............................................................+++++
appserver_1   | ..................................................+++++
appserver_1   | e is 65537 (0x010001)
appserver_1   | setupca 10:07:53.24 INFO  ==> /lando/certs/lndo.site.pem not found... generating one
appserver_1   | setupca 10:07:53.25 INFO  ==> CA generated at /lando/certs/lndo.site.pem
appserver_1   | addcert 10:07:53.25 INFO  ==> Cert creation kicking off....
appserver_1   | addcert 10:07:53.25 INFO  ==> 
appserver_1   | addcert 10:07:53.26 DEBUG ==> ==================================================
appserver_1   | addcert 10:07:53.26 DEBUG ==> LANDO_CA_CERT     : /lando/certs/lndo.site.pem
appserver_1   | addcert 10:07:53.26 DEBUG ==> LANDO_CA_KEY      : /lando/certs/lndo.site.key
appserver_1   | addcert 10:07:53.26 DEBUG ==> CA_DIR            : /usr/share/ca-certificates
phpmyadmin_1  | userperms 10:08:48.70 INFO  ==> www-data:www-data is now running as uid=33333(www-data) gid=33333(www-data) groups=33333(www-data)!
phpmyadmin_1  | userperms 10:08:48.70 INFO  ==> And here. we. go.
phpmyadmin_1  | userperms 10:08:48.71 INFO  ==> Doing the permission sweep.
phpmyadmin_1  | loadkeys 10:08:48.74 INFO  ==> Scanning /lando/keys for keys...
phpmyadmin_1  | loadkeys 10:08:48.74 INFO  ==> Scanning /var/www/.ssh for keys...
phpmyadmin_1  | loadkeys 10:08:48.75 INFO  ==> Found keys /user/.ssh/id_rsa
phpmyadmin_1  | loadkeys 10:08:48.75 DEBUG ==> Ensuring permissions and ownership of /user/.ssh/id_rsa...
phpmyadmin_1  | loadkeys 10:08:48.76 DEBUG ==> Checking whether /user/.ssh/id_rsa is a private key...
phpmyadmin_1  | loadkeys 10:08:48.76 INFO  ==> Using the following keys: /user/.ssh/id_rsa
phpmyadmin_1  | lando 10:08:48.77 INFO  ==> Lando handing off to: /docker-entrypoint.sh apache2-foreground
phpmyadmin_1  | AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.4. Set the 'ServerName' directive globally to suppress this message
phpmyadmin_1  | AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.4. Set the 'ServerName' directive globally to suppress this message
phpmyadmin_1  | [Fri Sep 27 10:08:48.939367 2024] [mpm_prefork:notice] [pid 200] AH00163: Apache/2.4.38 (Debian) PHP/7.4.20 configured -- resuming normal operations
appserver_1   | addcert 10:07:53.26 DEBUG ==> CA_CERT_FILENAME  : lndo.site.pem
appserver_1   | addcert 10:07:53.26 DEBUG ==> CA_CERT_CONTAINER : /usr/share/ca-certificates/lndo.site.pem
appserver_1   | addcert 10:07:53.26 DEBUG ==> COMMON_NAME       : newzoo
appserver_1   | addcert 10:07:53.26 DEBUG ==> LANDO_PROXY_NAMES : 
appserver_1   | addcert 10:07:53.26 DEBUG ==> LANDO_EXTRA_NAMES : 
appserver_1   | addcert 10:07:53.27 DEBUG ==> ==================================================
appserver_1   | addcert 10:07:53.31 INFO  ==> 
appserver_1   | addcert 10:07:53.32 INFO  ==> Generating certs...
appserver_1   | Generating RSA private key, 2048 bit long modulus (2 primes)
appserver_1   | .....................+++++
appserver_1   | ..+++++
appserver_1   | e is 65537 (0x010001)
appserver_1   | Signature ok
appserver_1   | subject=C = US, ST = California, L = San Francisco, O = Lando, OU = Bespin, CN = newzoo
appserver_1   | Getting CA Private Key
appserver_1   | addcert 10:07:53.36 INFO  ==> /usr/share/ca-certificates/lndo.site.pem not found... copying /lando/certs/lndo.site.pem over
appserver_1   | lando 10:07:53.37 INFO  ==> Lando handing off to: docker-php-entrypoint sh -c a2enmod rewrite && apache2-foreground
appserver_1   | Enabling module rewrite.
appserver_1   | To activate the new configuration, you need to run:
phpmyadmin_1  | [Fri Sep 27 10:08:48.939422 2024] [core:notice] [pid 200] AH00094: Command line: 'apache2 -D FOREGROUND'
phpmyadmin_1  | 172.18.0.1 - - [27/Sep/2024:10:08:58 +0000] "GET / HTTP/1.1" 200 17229 "-" "axios/1.6.2"
phpmyadmin_1  | 172.18.0.1 - - [27/Sep/2024:10:08:58 +0000] "GET / HTTP/1.1" 200 17226 "-" "axios/1.6.2"
database_1    | chmod: changing permissions of '/helpers/mounter.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/pantheon-wait-for-user.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/pantheon.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/proxy-certs.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/psh-boot.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/psh-build.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/psh-clone.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/psh-exec.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/psh-fake-rpc.py': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/psh-mysql-helper.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/psh-open.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/psh-pull.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/psh-push.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/psh-recreate-users.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/pull.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/push.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/refresh-certs.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/run-elevated.ps1': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/setup-ca.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/sql-export.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/sql-import.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/switch.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/user-perm-helpers.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/user-perms.sh': Operation not permitted
database_1    | chmod: changing permissions of '/helpers/wait-for-user.sh': Operation not permitted
database_1    | userperms 10:08:48.43 WARN  ==> Only the root user can reset permissions! This is probably ok though...
appserver_1   |   service apache2 restart
appserver_1   | [Fri Sep 27 10:07:53.485608 2024] [core:warn] [pid 503:tid 503] AH00111: Config variable ${BACKDROP_SETTINGS} is not defined
appserver_1   | [Fri Sep 27 10:07:53.485717 2024] [core:warn] [pid 503:tid 503] AH00111: Config variable ${BACKDROP_SETTINGS} is not defined
appserver_1   | AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
appserver_1   | [Fri Sep 27 10:07:53.535152 2024] [core:warn] [pid 503:tid 503] AH00111: Config variable ${BACKDROP_SETTINGS} is not defined
appserver_1   | [Fri Sep 27 10:07:53.535190 2024] [core:warn] [pid 503:tid 503] AH00111: Config variable ${BACKDROP_SETTINGS} is not defined
appserver_1   | AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
appserver_1   | [Fri Sep 27 10:07:53.565332 2024] [mpm_prefork:notice] [pid 503:tid 503] AH00163: Apache/2.4.62 (Debian) PHP/8.2.23 OpenSSL/1.1.1w configured -- resuming normal operations
appserver_1   | [Fri Sep 27 10:07:53.565353 2024] [core:notice] [pid 503:tid 503] AH00094: Command line: 'apache2 -D FOREGROUND'
appserver_1   | userperms 10:08:48.52 INFO  ==> Symlinked users .gitconfig.
appserver_1   | userperms 10:08:48.52 INFO  ==> This is a debian container
appserver_1   | userperms 10:08:48.53 INFO  ==> user-perms.sh kicking off as user uid=0(root) gid=0(root) groups=0(root)
appserver_1   | userperms 10:08:48.53 DEBUG ==> Lando ENVVARS set at
appserver_1   | userperms 10:08:48.53 DEBUG ==> 
appserver_1   | userperms 10:08:48.53 DEBUG ==> ========================================
appserver_1   | userperms 10:08:48.53 DEBUG ==> LANDO_WEBROOT_USER      : www-data
appserver_1   | userperms 10:08:48.53 DEBUG ==> LANDO_WEBROOT_GROUP     : www-data
appserver_1   | userperms 10:08:48.53 DEBUG ==> LANDO_WEBROOT_UID       : 33333
appserver_1   | userperms 10:08:48.53 DEBUG ==> LANDO_WEBROOT_GID       : 33333
appserver_1   | userperms 10:08:48.53 DEBUG ==> LANDO_HOST_UID          : 33333
appserver_1   | userperms 10:08:48.53 DEBUG ==> LANDO_HOST_GID          : 33333
appserver_1   | userperms 10:08:48.53 DEBUG ==> ========================================
appserver_1   | userperms 10:08:48.54 DEBUG ==> 
appserver_1   | userperms 10:08:48.54 INFO  ==> Making sure correct user:group (www-data:www-data) exists...
appserver_1   | userperms 10:08:48.55 INFO  ==> Remapping ownership to handle docker volume sharing...
appserver_1   | userperms 10:08:48.55 INFO  ==> Resetting www-data:www-data from 33333:33333 to 33333:33333
appserver_1   | userperms 10:08:48.57 INFO  ==> www-data:www-data is now running as uid=33333(www-data) gid=33333(www-data) groups=33333(www-data)!
appserver_1   | userperms 10:08:48.58 INFO  ==> And here. we. go.
appserver_1   | userperms 10:08:48.58 INFO  ==> Doing the permission sweep.
appserver_1   | loadkeys 10:08:48.60 INFO  ==> Scanning /lando/keys for keys...
appserver_1   | loadkeys 10:08:48.60 INFO  ==> Scanning /var/www/.ssh for keys...
appserver_1   | loadkeys 10:08:48.61 INFO  ==> Found keys /user/.ssh/id_rsa
appserver_1   | loadkeys 10:08:48.61 DEBUG ==> Ensuring permissions and ownership of /user/.ssh/id_rsa...
appserver_1   | loadkeys 10:08:48.61 DEBUG ==> Checking whether /user/.ssh/id_rsa is a private key...
appserver_1   | loadkeys 10:08:48.61 DEBUG ==> Checking whether /user/.ssh/id_rsa is formatted correctly...
appserver_1   | loadkeys 10:08:48.62 INFO  ==> Using the following keys: /user/.ssh/id_rsa
appserver_1   | addcert 10:08:48.63 INFO  ==> Enabling apache ssl modz
appserver_1   | addcert 10:08:48.64 INFO  ==> Cert creation kicking off....
appserver_1   | addcert 10:08:48.64 INFO  ==> 
appserver_1   | addcert 10:08:48.64 DEBUG ==> ==================================================
appserver_1   | addcert 10:08:48.64 DEBUG ==> LANDO_CA_CERT     : /lando/certs/lndo.site.pem
appserver_1   | addcert 10:08:48.64 DEBUG ==> LANDO_CA_KEY      : /lando/certs/lndo.site.key
appserver_1   | addcert 10:08:48.64 DEBUG ==> CA_DIR            : /usr/share/ca-certificates
appserver_1   | addcert 10:08:48.65 DEBUG ==> CA_CERT_FILENAME  : lndo.site.pem
appserver_1   | addcert 10:08:48.65 DEBUG ==> CA_CERT_CONTAINER : /usr/share/ca-certificates/lndo.site.pem
appserver_1   | addcert 10:08:48.65 DEBUG ==> COMMON_NAME       : newzoo
appserver_1   | addcert 10:08:48.65 DEBUG ==> LANDO_PROXY_NAMES : 
appserver_1   | addcert 10:08:48.65 DEBUG ==> LANDO_EXTRA_NAMES : 
appserver_1   | addcert 10:08:48.65 DEBUG ==> ==================================================
appserver_1   | addcert 10:08:48.65 INFO  ==> 
appserver_1   | addcert 10:08:48.65 INFO  ==> Generating certs...
database_1    | loadkeys 10:08:48.43 WARN  ==> Only the root user can load ssh keys! This is probably ok though...
database_1    | lando 10:08:48.43 INFO  ==> Lando handing off to: /launch.sh
database_1    | lando 10:08:48.44 DEBUG ==> Running command with exec...
database_1    | mariadb 10:08:48.45 
database_1    | mariadb 10:08:48.45 Welcome to the Bitnami mariadb container
database_1    | mariadb 10:08:48.45 Subscribe to project updates by watching https://github.com/bitnami/bitnami-docker-mariadb
database_1    | mariadb 10:08:48.45 Submit issues and feature requests at https://github.com/bitnami/bitnami-docker-mariadb/issues
database_1    | mariadb 10:08:48.45 
database_1    | mariadb 10:08:48.45 INFO  ==> ** Starting MariaDB setup **
database_1    | mariadb 10:08:48.47 INFO  ==> Validating settings in MYSQL_*/MARIADB_* env vars
database_1    | mariadb 10:08:48.47 WARN  ==> You set the environment variable ALLOW_EMPTY_PASSWORD=yes. For safety reasons, do not use this flag in a production environment.
database_1    | mariadb 10:08:48.47 INFO  ==> Initializing mariadb database
database_1    | mariadb 10:08:48.48 DEBUG ==> Ensuring expected directories/files exist
database_1    | mariadb 10:08:48.49 INFO  ==> Updating 'my.cnf' with custom configuration
database_1    | mariadb 10:08:48.49 DEBUG ==> Injecting custom configuration from my_custom.conf
database_1    | mariadb 10:08:48.50 INFO  ==> Setting user option
appserver_1   | Generating RSA private key, 2048 bit long modulus (2 primes)
appserver_1   | ...................................................................+++++
appserver_1   | ..................+++++
appserver_1   | e is 65537 (0x010001)
appserver_1   | Signature ok
appserver_1   | subject=C = US, ST = California, L = San Francisco, O = Lando, OU = Bespin, CN = newzoo
appserver_1   | Getting CA Private Key
appserver_1   | lando 10:08:48.75 INFO  ==> Lando handing off to: docker-php-entrypoint sh -c a2enmod rewrite && apache2-foreground
appserver_1   | Module rewrite already enabled
database_1    | mariadb 10:08:48.50 DEBUG ==> Setting user to 'wordpress' in mariadb configuration file /opt/bitnami/mariadb/conf/my.cnf
database_1    | mariadb 10:08:48.51 INFO  ==> Injecting custom configuration 'my_custom.cnf'
database_1    | mariadb 10:08:48.51 DEBUG ==> Cleaning data directory to ensure successfully initialization
database_1    | mariadb 10:08:48.51 INFO  ==> Installing database
database_1    | Installing MariaDB/MySQL system tables in '/bitnami/mariadb/data' ...
database_1    | OK
database_1    | 
database_1    | To start mysqld at boot time you have to copy
database_1    | support-files/mysql.server to the right place for your system
database_1    | 
database_1    | 
database_1    | PLEASE REMEMBER TO SET A PASSWORD FOR THE MariaDB root USER !
database_1    | To do so, start the server, then issue the following commands:
database_1    | 
database_1    | '/opt/bitnami/mariadb/bin/mysqladmin' -u root password 'new-password'
database_1    | '/opt/bitnami/mariadb/bin/mysqladmin' -u root -h 1ae9883b8c0e password 'new-password'
database_1    | 
database_1    | Alternatively you can run:
database_1    | '/opt/bitnami/mariadb/bin/mysql_secure_installation'
database_1    | 
database_1    | which will also give you the option of removing the test
database_1    | databases and anonymous user created by default.  This is
database_1    | strongly recommended for production servers.
database_1    | 
database_1    | See the MariaDB Knowledgebase at http://mariadb.com/kb or the
database_1    | MySQL manual for more instructions.
database_1    | 
database_1    | You can start the MariaDB daemon with:
database_1    | cd '/opt/bitnami/mariadb' ; /opt/bitnami/mariadb/bin/mysqld_safe --datadir='/bitnami/mariadb/data'
database_1    | 
database_1    | You can test the MariaDB daemon with mysql-test-run.pl
database_1    | cd '/opt/bitnami/mariadb/mysql-test' ; perl mysql-test-run.pl
database_1    | 
database_1    | Please report any problems at http://mariadb.org/jira
database_1    | 
database_1    | The latest information about MariaDB is available at http://mariadb.org/.
database_1    | You can find additional information about the MySQL part at:
database_1    | http://dev.mysql.com
database_1    | Consider joining MariaDB's strong and vibrant community:
database_1    | https://mariadb.org/get-involved/
database_1    | 
database_1    | mariadb 10:08:51.13 INFO  ==> Starting mariadb in background
database_1    | 2024-09-27 10:08:51 0 [Note] /opt/bitnami/mariadb/sbin/mysqld (mysqld 10.4.17-MariaDB) starting as process 239 ...
database_1    | 2024-09-27 10:08:51 0 [Note] InnoDB: Using Linux native AIO
database_1    | 2024-09-27 10:08:51 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
database_1    | 2024-09-27 10:08:51 0 [Note] InnoDB: Uses event mutexes
database_1    | 2024-09-27 10:08:51 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
database_1    | 2024-09-27 10:08:51 0 [Note] InnoDB: Number of pools: 1
appserver_1   | [Fri Sep 27 10:08:48.858388 2024] [core:warn] [pid 184:tid 184] AH00111: Config variable ${BACKDROP_SETTINGS} is not defined
appserver_1   | [Fri Sep 27 10:08:48.858497 2024] [core:warn] [pid 184:tid 184] AH00111: Config variable ${BACKDROP_SETTINGS} is not defined
appserver_1   | AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.3. Set the 'ServerName' directive globally to suppress this message
appserver_1   | [Fri Sep 27 10:08:48.882521 2024] [core:warn] [pid 184:tid 184] AH00111: Config variable ${BACKDROP_SETTINGS} is not defined
appserver_1   | [Fri Sep 27 10:08:48.882576 2024] [core:warn] [pid 184:tid 184] AH00111: Config variable ${BACKDROP_SETTINGS} is not defined
appserver_1   | AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.3. Set the 'ServerName' directive globally to suppress this message
appserver_1   | [Fri Sep 27 10:08:48.935105 2024] [mpm_prefork:notice] [pid 184:tid 184] AH00163: Apache/2.4.62 (Debian) PHP/8.2.23 OpenSSL/1.1.1w configured -- resuming normal operations
appserver_1   | [Fri Sep 27 10:08:48.935190 2024] [core:notice] [pid 184:tid 184] AH00094: Command line: 'apache2 -D FOREGROUND'
appserver_1   | 172.18.0.1 - - [27/Sep/2024:10:08:58 +0000] "GET / HTTP/1.1" 200 625 "-" "axios/1.6.2"
appserver_1   | 172.18.0.1 - - [27/Sep/2024:10:08:58 +0000] "GET / HTTP/1.1" 200 625 "-" "axios/1.6.2"
appserver_1   | 172.18.0.1 - - [27/Sep/2024:10:08:58 +0000] "GET / HTTP/1.1" 200 2770 "-" "axios/1.6.2"
database_1    | 2024-09-27 10:08:51 0 [Note] InnoDB: Using SSE2 crc32 instructions
database_1    | 2024-09-27 10:08:51 0 [Note] mysqld: O_TMPFILE is not supported on /opt/bitnami/mariadb/tmp (disabling future attempts)
database_1    | 2024-09-27 10:08:51 0 [Note] InnoDB: Initializing buffer pool, total size = 384M, instances = 1, chunk size = 128M
database_1    | 2024-09-27 10:08:51 0 [Note] InnoDB: Completed initialization of buffer pool
database_1    | 2024-09-27 10:08:51 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
database_1    | 2024-09-27 10:08:51 0 [Note] InnoDB: 128 out of 128 rollback segments are active.
database_1    | 2024-09-27 10:08:51 0 [Note] InnoDB: Creating shared tablespace for temporary tables
database_1    | 2024-09-27 10:08:51 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
database_1    | 2024-09-27 10:08:51 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
database_1    | 2024-09-27 10:08:51 0 [Note] InnoDB: 10.4.17 started; log sequence number 60967; transaction id 20
database_1    | 2024-09-27 10:08:51 0 [Note] InnoDB: Loading buffer pool(s) from /bitnami/mariadb/data/ib_buffer_pool
database_1    | 2024-09-27 10:08:51 0 [Note] Plugin 'FEEDBACK' is disabled.
appserver_1   | 172.18.0.1 - - [27/Sep/2024:10:08:58 +0000] "GET / HTTP/1.1" 200 2769 "-" "axios/1.6.2"
appserver_1   | 192.168.160.135 - - [27/Sep/2024:10:09:00 +0000] "GET / HTTP/1.1" 200 639 "https://newzoocom-gitpodlando-fjvb1vejd78.ws-eu116.gitpod.io/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36"
appserver_1   | 192.168.160.135 - - [27/Sep/2024:10:09:00 +0000] "GET /icons/blank.gif HTTP/1.1" 200 376 "https://38080-newzoocom-gitpodlando-fjvb1vejd78.ws-eu116.gitpod.io/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36"
appserver_1   | 192.168.160.135 - - [27/Sep/2024:10:09:00 +0000] "GET /icons/folder.gif HTTP/1.1" 200 453 "https://38080-newzoocom-gitpodlando-fjvb1vejd78.ws-eu116.gitpod.io/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36"
appserver_1   | 192.168.160.135 - - [27/Sep/2024:10:09:00 +0000] "GET /favicon.ico HTTP/1.1" 404 481 "https://38080-newzoocom-gitpodlando-fjvb1vejd78.ws-eu116.gitpod.io/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36"
appserver_1   | ::1 - - [27/Sep/2024:10:09:05 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.62 (Debian) PHP/8.2.23 OpenSSL/1.1.1w (internal dummy connection)"
appserver_1   | 192.168.160.135 - - [27/Sep/2024:10:09:06 +0000] "GET / HTTP/1.1" 200 639 "https://newzoocom-gitpodlando-fjvb1vejd78.ws-eu116.gitpod.io/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36"
appserver_1   | ::1 - - [27/Sep/2024:10:09:11 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.62 (Debian) PHP/8.2.23 OpenSSL/1.1.1w (internal dummy connection)"
appserver_1   | userperms 10:11:05.87 INFO  ==> Symlinked users .gitconfig.
appserver_1   | userperms 10:11:05.87 INFO  ==> This is a debian container
appserver_1   | userperms 10:11:05.88 INFO  ==> user-perms.sh kicking off as user uid=0(root) gid=0(root) groups=0(root)
appserver_1   | userperms 10:11:05.88 DEBUG ==> Lando ENVVARS set at
appserver_1   | userperms 10:11:05.88 DEBUG ==> 
appserver_1   | userperms 10:11:05.88 DEBUG ==> ========================================
appserver_1   | userperms 10:11:05.88 DEBUG ==> LANDO_WEBROOT_USER      : www-data
appserver_1   | userperms 10:11:05.88 DEBUG ==> LANDO_WEBROOT_GROUP     : www-data
appserver_1   | userperms 10:11:05.88 DEBUG ==> LANDO_WEBROOT_UID       : 33333
database_1    | 2024-09-27 10:08:51 0 [Note] Server socket created on IP: '127.0.0.1'.
database_1    | 2024-09-27 10:08:51 0 [Warning] 'user' entry 'root@1ae9883b8c0e' ignored in --skip-name-resolve mode.
database_1    | 2024-09-27 10:08:51 0 [Warning] 'user' entry '@1ae9883b8c0e' ignored in --skip-name-resolve mode.
database_1    | 2024-09-27 10:08:51 0 [Warning] 'proxies_priv' entry '@% root@1ae9883b8c0e' ignored in --skip-name-resolve mode.
database_1    | 2024-09-27 10:08:51 0 [Note] InnoDB: Buffer pool(s) load completed at 240927 10:08:51
database_1    | 2024-09-27 10:08:51 0 [Note] Reading of all Master_info entries succeeded
database_1    | 2024-09-27 10:08:51 0 [Note] Added new Master_info '' to hash table
database_1    | 2024-09-27 10:08:51 0 [Note] /opt/bitnami/mariadb/sbin/mysqld: ready for connections.
appserver_1   | userperms 10:11:05.89 DEBUG ==> LANDO_WEBROOT_GID       : 33333
appserver_1   | userperms 10:11:05.89 DEBUG ==> LANDO_HOST_UID          : 33333
database_1    | Version: '10.4.17-MariaDB'  socket: '/opt/bitnami/mariadb/tmp/mysql.sock'  port: 3306  Source distribution
database_1    | /opt/bitnami/scripts/libmariadb.sh: line 1291: DB_ENABLE_SSL: unbound variable
database_1    | mariadb 10:08:53.14 DEBUG ==> Executing SQL command:
database_1    | select 1
database_1    | 1
database_1    | mariadb 10:08:53.15 INFO  ==> Configuring authentication
database_1    | /opt/bitnami/scripts/libmariadb.sh: line 1291: DB_ENABLE_SSL: unbound variable
database_1    | mariadb 10:08:53.16 DEBUG ==> Executing SQL command:
database_1    | DELETE FROM mysql.user WHERE user not in ('mysql.sys','mariadb.sys');
database_1    | mariadb 10:08:53.17 DEBUG ==> Configuring root user credentials
database_1    | /opt/bitnami/scripts/libmariadb.sh: line 1291: DB_ENABLE_SSL: unbound variable
database_1    | mariadb 10:08:53.17 DEBUG ==> Executing SQL command:
database_1    | -- create root@localhost user for local admin access
database_1    | -- create user 'root'@'localhost' ;
database_1    | -- grant all on *.* to 'root'@'localhost' with grant option;
database_1    | -- create admin user for remote access
database_1    | create user 'root'@'%' ;
database_1    | grant all on *.* to 'root'@'%' with grant option;
database_1    | flush privileges;
database_1    | 2024-09-27 10:08:53 10 [Warning] 'proxies_priv' entry '@% root@1ae9883b8c0e' ignored in --skip-name-resolve mode.
database_1    | mariadb 10:08:53.18 DEBUG ==> removing the unknown user
database_1    | /opt/bitnami/scripts/libmariadb.sh: line 1291: DB_ENABLE_SSL: unbound variable
database_1    | mariadb 10:08:53.19 DEBUG ==> Executing SQL command:
database_1    | select Host from user where User='';
database_1    | mariadb 10:08:53.20 DEBUG ==> creating database user \'wordpress\'
database_1    | /opt/bitnami/scripts/libmariadb.sh: line 1291: DB_ENABLE_SSL: unbound variable
database_1    | mariadb 10:08:53.20 DEBUG ==> Executing SQL command:
database_1    | create or replace user 'wordpress'@'%' identified by "wordpress";
database_1    | mariadb 10:08:53.21 DEBUG ==> Removing all other hosts for the user
database_1    | /opt/bitnami/scripts/libmariadb.sh: line 1291: DB_ENABLE_SSL: unbound variable
database_1    | mariadb 10:08:53.21 DEBUG ==> Executing SQL command:
database_1    | select Host from user where User='wordpress' and Host!='%';
database_1    | mariadb 10:08:53.22 DEBUG ==> Creating database wordpress
database_1    | /opt/bitnami/scripts/libmariadb.sh: line 1291: DB_ENABLE_SSL: unbound variable
database_1    | mariadb 10:08:53.23 DEBUG ==> Executing SQL command:
database_1    | create database if not exists `wordpress` ;
appserver_1   | userperms 10:11:05.89 DEBUG ==> LANDO_HOST_GID          : 33333
appserver_1   | userperms 10:11:05.89 DEBUG ==> ========================================
appserver_1   | userperms 10:11:05.89 DEBUG ==> 
appserver_1   | userperms 10:11:05.89 INFO  ==> Making sure correct user:group (www-data:www-data) exists...
appserver_1   | userperms 10:11:05.91 INFO  ==> Remapping ownership to handle docker volume sharing...
appserver_1   | userperms 10:11:05.91 INFO  ==> Resetting www-data:www-data from 33333:33333 to 33333:33333
appserver_1   | userperms 10:11:05.94 INFO  ==> www-data:www-data is now running as uid=33333(www-data) gid=33333(www-data) groups=33333(www-data)!
appserver_1   | userperms 10:11:05.94 INFO  ==> And here. we. go.
appserver_1   | userperms 10:11:05.94 INFO  ==> Doing the permission sweep.
appserver_1   | loadkeys 10:11:05.98 INFO  ==> Scanning /lando/keys for keys...
appserver_1   | loadkeys 10:11:05.99 INFO  ==> Scanning /var/www/.ssh for keys...
appserver_1   | loadkeys 10:11:06.00 INFO  ==> Found keys /user/.ssh/id_rsa
appserver_1   | loadkeys 10:11:06.00 DEBUG ==> Ensuring permissions and ownership of /user/.ssh/id_rsa...
appserver_1   | loadkeys 10:11:06.01 DEBUG ==> Checking whether /user/.ssh/id_rsa is a private key...
appserver_1   | loadkeys 10:11:06.01 DEBUG ==> Checking whether /user/.ssh/id_rsa is formatted correctly...
appserver_1   | loadkeys 10:11:06.02 INFO  ==> Using the following keys: /user/.ssh/id_rsa
appserver_1   | addcert 10:11:06.08 INFO  ==> Enabling apache ssl modz
appserver_1   | setupca 10:11:06.09 INFO  ==> Looks like you do not have a Lando CA yet! Let's set one up!
appserver_1   | setupca 10:11:06.09 INFO  ==> Trying to setup root CA with...
appserver_1   | setupca 10:11:06.09 INFO  ==> LANDO_CA_CERT: /lando/certs/lndo.site.pem
appserver_1   | setupca 10:11:06.09 INFO  ==> LANDO_CA_KEY: /lando/certs/lndo.site.key
appserver_1   | setupca 10:11:06.09 INFO  ==> /lando/certs/lndo.site.key not found... generating one
appserver_1   | Generating RSA private key, 2048 bit long modulus (2 primes)
appserver_1   | ..+++++
appserver_1   | .................................................................................................................................+++++
appserver_1   | e is 65537 (0x010001)
appserver_1   | setupca 10:11:06.29 INFO  ==> /lando/certs/lndo.site.pem not found... generating one
appserver_1   | setupca 10:11:06.30 INFO  ==> CA generated at /lando/certs/lndo.site.pem
appserver_1   | C = US, ST = California, L = San Francisco, O = Lando, OU = Bespin, CN = newzoo
appserver_1   | error 20 at 0 depth lookup: unable to get local issuer certificate
appserver_1   | addcert 10:11:06.31 INFO  ==> Certs are not valid! Lets remove them.
appserver_1   | addcert 10:11:06.31 INFO  ==> Cert creation kicking off....
appserver_1   | addcert 10:11:06.31 INFO  ==> 
appserver_1   | addcert 10:11:06.32 DEBUG ==> ==================================================
appserver_1   | addcert 10:11:06.32 DEBUG ==> LANDO_CA_CERT     : /lando/certs/lndo.site.pem
appserver_1   | addcert 10:11:06.32 DEBUG ==> LANDO_CA_KEY      : /lando/certs/lndo.site.key
appserver_1   | addcert 10:11:06.32 DEBUG ==> CA_DIR            : /usr/share/ca-certificates
appserver_1   | addcert 10:11:06.32 DEBUG ==> CA_CERT_FILENAME  : lndo.site.pem
appserver_1   | addcert 10:11:06.32 DEBUG ==> CA_CERT_CONTAINER : /usr/share/ca-certificates/lndo.site.pem
appserver_1   | addcert 10:11:06.32 DEBUG ==> COMMON_NAME       : newzoo
appserver_1   | addcert 10:11:06.32 DEBUG ==> LANDO_PROXY_NAMES : 
appserver_1   | addcert 10:11:06.33 DEBUG ==> LANDO_EXTRA_NAMES : 
appserver_1   | addcert 10:11:06.33 DEBUG ==> ==================================================
appserver_1   | addcert 10:11:06.33 INFO  ==> 
appserver_1   | addcert 10:11:06.33 INFO  ==> Generating certs...
appserver_1   | Generating RSA private key, 2048 bit long modulus (2 primes)
appserver_1   | ...............................+++++
appserver_1   | ...................................................................................................................................................+++++
appserver_1   | e is 65537 (0x010001)
appserver_1   | Signature ok
appserver_1   | subject=C = US, ST = California, L = San Francisco, O = Lando, OU = Bespin, CN = newzoo
appserver_1   | Getting CA Private Key
appserver_1   | lando 10:11:06.59 INFO  ==> Lando handing off to: docker-php-entrypoint sh -c a2enmod rewrite && apache2-foreground
appserver_1   | Module rewrite already enabled
appserver_1   | [Fri Sep 27 10:11:06.700745 2024] [core:warn] [pid 296:tid 296] AH00111: Config variable ${BACKDROP_SETTINGS} is not defined
appserver_1   | [Fri Sep 27 10:11:06.700831 2024] [core:warn] [pid 296:tid 296] AH00111: Config variable ${BACKDROP_SETTINGS} is not defined
appserver_1   | AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.19.0.2. Set the 'ServerName' directive globally to suppress this message
database_1    | mariadb 10:08:53.23 DEBUG ==> Providing privileges to username wordpress on database wordpress
database_1    | /opt/bitnami/scripts/libmariadb.sh: line 1291: DB_ENABLE_SSL: unbound variable
database_1    | mariadb 10:08:53.24 DEBUG ==> Executing SQL command:
database_1    | grant all on `wordpress`.* to 'wordpress'@'%';
database_1    | mariadb 10:08:53.27 INFO  ==> Running mysql_upgrade
database_1    | Phase 1/7: Checking and upgrading mysql database
database_1    | Processing databases
database_1    | mysql
database_1    | mysql.column_stats                                 OK
database_1    | mysql.columns_priv                                 OK
database_1    | mysql.db                                           OK
database_1    | mysql.event                                        OK
database_1    | mysql.func                                         OK
database_1    | mysql.global_priv                                  OK
database_1    | mysql.gtid_slave_pos                               OK
database_1    | mysql.help_category                                OK
database_1    | mysql.help_keyword                                 OK
database_1    | mysql.help_relation                                OK
database_1    | mysql.help_topic                                   OK
database_1    | mysql.index_stats                                  OK
database_1    | mysql.innodb_index_stats                           OK
database_1    | mysql.innodb_table_stats                           OK
database_1    | mysql.plugin                                       OK
database_1    | mysql.proc                                         OK
appserver_1   | (13)Permission denied: AH00091: apache2: could not open error log file /var/log/apache2/error.log.
appserver_1   | AH00015: Unable to open logs
database_1    | mysql.procs_priv                                   OK
database_1    | mysql.proxies_priv                                 OK
database_1    | mysql.roles_mapping                                OK
database_1    | mysql.servers                                      OK
database_1    | mysql.table_stats                                  OK
database_1    | mysql.tables_priv                                  OK
database_1    | mysql.time_zone                                    OK
database_1    | mysql.time_zone_leap_second                        OK
database_1    | mysql.time_zone_name                               OK
database_1    | mysql.time_zone_transition                         OK
database_1    | mysql.time_zone_transition_type                    OK
database_1    | mysql.transaction_registry                         OK
database_1    | Phase 2/7: Installing used storage engines... Skipped
database_1    | Phase 3/7: Fixing views
database_1    | mysql.user                                         OK
database_1    | Phase 4/7: Running 'mysql_fix_privilege_tables'
database_1    | Phase 5/7: Fixing table and database names
database_1    | Phase 6/7: Checking and upgrading tables
database_1    | Processing databases
database_1    | information_schema
database_1    | performance_schema
database_1    | test
database_1    | wordpress
database_1    | Phase 7/7: Running 'FLUSH PRIVILEGES'
database_1    | 2024-09-27 10:08:53 26 [Warning] 'proxies_priv' entry '@% root@1ae9883b8c0e' ignored in --skip-name-resolve mode.
database_1    | OK
database_1    | mariadb 10:08:53.85 INFO  ==> Stopping mariadb
database_1    | 2024-09-27 10:08:53 0 [Note] /opt/bitnami/mariadb/sbin/mysqld (initiated by: unknown): Normal shutdown
database_1    | 2024-09-27 10:08:53 0 [Note] Event Scheduler: Purging the queue. 0 events
database_1    | 2024-09-27 10:08:53 0 [Note] InnoDB: FTS optimize thread exiting.
database_1    | 2024-09-27 10:08:53 0 [Note] InnoDB: Starting shutdown...
database_1    | 2024-09-27 10:08:53 0 [Note] InnoDB: Dumping buffer pool(s) to /bitnami/mariadb/data/ib_buffer_pool
database_1    | 2024-09-27 10:08:53 0 [Note] InnoDB: Buffer pool(s) dump completed at 240927 10:08:53
database_1    | 2024-09-27 10:08:55 0 [Note] InnoDB: Shutdown completed; log sequence number 60976; transaction id 25
database_1    | 2024-09-27 10:08:55 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1"
database_1    | 2024-09-27 10:08:55 0 [Note] /opt/bitnami/mariadb/sbin/mysqld: Shutdown complete
database_1    | 
database_1    | 
database_1    | mariadb 10:08:55.86 INFO  ==> ** MariaDB setup finished! **
database_1    | mariadb 10:08:55.88 INFO  ==> ** Starting MariaDB **
database_1    | 2024-09-27 10:08:55 0 [Note] /opt/bitnami/mariadb/sbin/mysqld (mysqld 10.4.17-MariaDB) starting as process 36 ...
database_1    | 2024-09-27 10:08:55 0 [Note] InnoDB: Using Linux native AIO
database_1    | 2024-09-27 10:08:55 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
database_1    | 2024-09-27 10:08:55 0 [Note] InnoDB: Uses event mutexes
database_1    | 2024-09-27 10:08:55 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
database_1    | 2024-09-27 10:08:55 0 [Note] InnoDB: Number of pools: 1
database_1    | 2024-09-27 10:08:55 0 [Note] InnoDB: Using SSE2 crc32 instructions
database_1    | 2024-09-27 10:08:55 0 [Note] mysqld: O_TMPFILE is not supported on /opt/bitnami/mariadb/tmp (disabling future attempts)
database_1    | 2024-09-27 10:08:56 0 [Note] InnoDB: Initializing buffer pool, total size = 384M, instances = 1, chunk size = 128M
database_1    | 2024-09-27 10:08:56 0 [Note] InnoDB: Completed initialization of buffer pool
database_1    | 2024-09-27 10:08:56 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
database_1    | 2024-09-27 10:08:56 0 [Note] InnoDB: 128 out of 128 rollback segments are active.
database_1    | 2024-09-27 10:08:56 0 [Note] InnoDB: Creating shared tablespace for temporary tables
database_1    | 2024-09-27 10:08:56 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
database_1    | 2024-09-27 10:08:56 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
database_1    | 2024-09-27 10:08:56 0 [Note] InnoDB: Waiting for purge to start
database_1    | 2024-09-27 10:08:56 0 [Note] InnoDB: 10.4.17 started; log sequence number 60976; transaction id 20
database_1    | 2024-09-27 10:08:56 0 [Note] InnoDB: Loading buffer pool(s) from /bitnami/mariadb/data/ib_buffer_pool
database_1    | 2024-09-27 10:08:56 0 [Note] Plugin 'FEEDBACK' is disabled.
database_1    | 2024-09-27 10:08:56 0 [Note] Server socket created on IP: '0.0.0.0'.
database_1    | 2024-09-27 10:08:56 0 [Warning] 'proxies_priv' entry '@% root@1ae9883b8c0e' ignored in --skip-name-resolve mode.
database_1    | 2024-09-27 10:08:56 0 [Note] InnoDB: Buffer pool(s) load completed at 240927 10:08:56
database_1    | 2024-09-27 10:08:56 0 [Note] Reading of all Master_info entries succeeded
database_1    | 2024-09-27 10:08:56 0 [Note] Added new Master_info '' to hash table
database_1    | 2024-09-27 10:08:56 0 [Note] /opt/bitnami/mariadb/sbin/mysqld: ready for connections.
database_1    | Version: '10.4.17-MariaDB'  socket: '/opt/bitnami/mariadb/tmp/mysql.sock'  port: 3306  Source distribution

What can I do to avoid this and get Lando working on Gitpod?
Thanks

@reynoldsalec
Copy link
Member

Sounds like the networks aren't persisting between Gitpod sessions. @alessandro-newzoo does a lando rebuild fix the issue? That might be a quick workaround.

@alessandro-newzoo
Copy link
Author

hi!
sorry I forgot to mention that, but lando rebuild does not fix the issue, the only workaround seems to be to destroy the workspace and spin up a new one.

FYI I've now switched to ddev as I needed an alternative ASAP, so if you don't have the resources to work on a fix for this that's completely fine by me, but I thought I'd still post it so you're aware of the issue :)

And happy to help testing potential fixes if you need me to.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants