Can't get to/through installation wizard

If you aren't speaking german, you can ask for support or post your request here.
Antworten
saidou
Beiträge: 2
Registriert: 5. Mär 2024, 19:46

Can't get to/through installation wizard

Beitrag von saidou »

Hi all,


Just found out this project and I wanted to try it out.
However I can't get Admidio configured.
I tried installing it in Docker and also barebones on Debian 12.
On Docker I configured it with environment variables. I have an external mariadb database.

Code: Alles auswählen

  admidio:
    image: admidio/admidio:latest
    container_name: admidio
    stdin_open: true
    tty: true
    networks:
      - proxy-local
    ports:
      - 9288:8080
    volumes:
      - $DOCKER_DIR/appdata/productivity/admidio/files:/opt/app-root/src/adm_my_files
      - $DOCKER_DIR/appdata/productivity/admidio/themes:/opt/app-root/src/adm_themes
      - $DOCKER_DIR/appdata/productivity/admidio/plugins:/opt/app-root/src/adm_plugins
    environment:
      - TZ=$TZ
      - ADMIDIO_DB_TYPE=mysql
      - ADMIDIO_DB_HOST=$MYSQL_HOST:3306	#my external mariadb database
      - ADMIDIO_DB_NAME=admidio
      - ADMIDIO_DB_USER=$MYSQL_USER
      - ADMIDIO_DB_PASSWORD=$MYSQL_PASSWORD
      - ADMIDIO_DB_TABLE_PRAEFIX=test
      # - ADMIDIO_ORGANISATION=test
      - ADMIDIO_ROOT_PATH=http://10.20.15.201:9288   #http://localhost:9288/test
      # - ADMIDIO_MAIL_RELAYHOST=192.168.10.10:25
      # - ADMIDIO_LOGIN_FOR_UPDATE=1
      - ADMIDIO_PASSWORD_HASH_ALGORITHM=​SHA512  #DEFAULT,​ ​BCRYPT,​ ​SHA512, ARGON2ID, ARGON2I​
    security_opt:
      - "seccomp:unconfined"
    restart: unless-stopped
In this setup I get through the Installation Wizard, but after I filled everything out, I get an HTTP ERROR 500 message.
The only issue I can see in the docker logs is:
admidio | AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.19.0.23. Set the 'ServerName' directive globally to suppress this message
I then installed it from the zip-file in a Debian 12 LXC container (proxmox), but after following the installation guide (php8.3 + php pdo drivers installed) I even can't get to the Installation Wizard and get the same error page as in docker when visiting http://10.20.15.29/admidio/index.php.

Am I missing something here?
saidou
Beiträge: 2
Registriert: 5. Mär 2024, 19:46

Re: Can't get to/through installation wizard

Beitrag von saidou »

I got it working on the LXC container after installing the following packages:

Code: Alles auswählen

apt install php8.3-cgi php8.3-fpm php8.3-solr php8.3-stomp
schast
Beiträge: 2
Registriert: 30. Jun 2021, 06:11

Re: Can't get to/through installation wizard

Beitrag von schast »

Hi saidou,

I can't reproduce the issue with your docker config.

Can you please provide the full logfile from docker container after first startup?
Are there any SQL connection errors?
Have you created the SQL db with correct user/password rights?

Can you reach the installation.php directly with http://10.20.15.201:9288/adm_program/in ... lation.php?
Antworten