Installation SetupPassword.txt is missing

Hi everyone,
this is not a question, just wanted to share a problem I’ve had. Maybe this time it will be possible to check this error with google :smile:

Problem
To start installation the password from SetupPassword.txt file is required, but the file is missing.

Solution

  1. Go to the “installation-folder(roor)/Data/” and create an empty file with the same name (SetupPassword.txt).

  2. Open your console and type docker-compose exec neos cat /app/Data/SetupPassword.txt
    Your password will be displayed in console.

Hopefully this could help someone!

1 Like

Hi @VlaD-T

Curious, how does your docker-compose file look? Could it be a docker mounting/syncing issue?

# NEOS DEVELOPMENT ENVIRONMENT
#
# For instructions how to use docker-compose, see
# https://docs.neos.io/cms/installation-development-setup/docker-and-docker-compose-setup#docker-compose-cheat-sheet
version: '3.5'
services:
  # Neos CMS
  neos:
    build:
      context: .
      dockerfile: Dockerfile.dev
    environment:
      FLOW_CONTEXT: 'Development/Docker'
    volumes:
      - ./composer.json:/app/composer.json:cached
      - ./composer.lock:/app/composer.lock:cached
      - ./Configuration/:/app/Configuration/:cached
      - ./DistributionPackages/:/app/DistributionPackages/:cached
      # if you work on other packages, you need to add them here.

      # WARNING: you need to add all packages from Distribution packages here ONE BY ONE, see the notice below for explanation.
      - ./Packages/Sites/:/app/Packages/Sites/:cached
    ports:
      - 8081:8081
  # DB
  db:
    image: mariadb:10.3
    environment:
      MYSQL_ROOT_PASSWORD: 'db'
    volumes:
      - db:/var/lib/mysql
    ports:
      - 13306:3306

volumes:
  db: