Page 1 of 2

[Help] install nextcloud TOS 7 F2-223

Posted: 12 Feb 2026, 01:54
by jibe49
Hello,
Nth attempt to install Nextcloud...
The one that's causing problems:
- in command mode:
docker run -d --name=portainer_ce --restart always -v /Volume1/docker/portainer_ce/data:/data -v /var/run/docker.sock:/var/run/docker.sock -p 9000:9000 --pid=host portainer/portainer-ce:latest
- with this file (which I am trying to customise...)

Code: Select all

services:  # List of software to be parameterized
  db:  # Database to store users and datas
    image: mariadb:10.6  # Version without bug. V11 don't work well
    restart: always  # will start with docker engine... if docker engine starts lol (TOS bug)
    command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW # IDK
    volumes:	# links between NAS files and container files
      - db:/var/lib/mysql
    environment:	# variables for database access
      - MYSQL_ROOT_PASSWORD=*****************
      - MYSQL_DATABASE=nextcloud
      - MYSQL_USER=adminnextcloud
      - MYSQL_PASSWORD=**************
  app:	# nextcloud app that will use the database
    image: nextcloud:29
    depends_on:	# will wait database before build
      - db
    restart: always
    ports:	# will be available on http://x.x.x.x:8082
      - 8082:80
    links:	# connected to database
      - db
    volumes:
      - nextcloud:/var/www/html
    environment:
      - MYSQL_HOST=localhost:3306
      - MYSQL_DATABASE=nextcloud
      - MYSQL_USER=adminnextcloud
      - MYSQL_PASSWORD=**************
      - OVERWRITECLIURL=http://192.168.1.14	# IP TO COMPLETE
#      - OVERWRITEPROTOCOL=https	# ONLY IF YOU HAVE HTTPS

volumes:
  nextcloud:
  db:
And I have this :

Code: Select all

Erreur
Error while trying to create admin account: An exception occurred in the driver: SQLSTATE[HY000] [2002] No such file or directory
Thank you for your help...

(Vous pouvez me répondre en français ;) )
JB49

Re: [Help] install nextcloud TOS 7 F2-223

Posted: 12 Feb 2026, 04:37
by FredMutter
j'ai cru comprendre que la version 7 beta a des problèmes de gestion de droit avec justement docker.
Je reste sagement en version 6.1.

Re: [Help] install nextcloud TOS 7 F2-223

Posted: 12 Feb 2026, 05:33
by jibe49
Merci de l'attention,
J'aimerai bien que ce soit pas des pbs de droits.
Et le " No such file or directory" du message d'erreur me fait penser à une erreur dans le fichier de configuration.
C'est la vérification de ce fichier que je souhaiterais que l'on fasse.
JB

Thank you for your attention.
I hope it's not a rights issue.
The "No such file or directory" error message makes me think there's an error in the configuration file.
I would like this file to be checked.
JB

Re: [Help] install nextcloud TOS 7 F2-223

Posted: 12 Feb 2026, 21:13
by TMjack
Regarding the error issue encountered when installing the Nextcloud application on the TOS 7 system, I will report it to the relevant internal team immediately and facilitate the fix. Thank you sincerely for your experience and support with the TOS Beta version!

Re: [Help] install nextcloud TOS 7 F2-223

Posted: 12 Feb 2026, 22:16
by jibe49
Thanks TMjack
Find the solution as quickly as possible
;)
JB

Re: [Help] install nextcloud TOS 7 F2-223

Posted: 12 Feb 2026, 22:26
by jibe49
Logs :

Code: Select all

Initializing nextcloud 29.0.16.1 ...

New nextcloud instance

Next step: Access your instance to finish the web-based installation!

Hint: You can specify NEXTCLOUD_ADMIN_USER and NEXTCLOUD_ADMIN_PASSWORD and the database variables _prior to first launch_ to fully automate initial installation.

Initializing finished

=> Searching for hook scripts (*.sh) to run, located in the folder "/docker-entrypoint-hooks.d/before-starting"

==> Skipped: the "before-starting" folder is empty (or does not exist)

AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.19.0.3. Set the 'ServerName' directive globally to suppress this message

AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.19.0.3. Set the 'ServerName' directive globally to suppress this message

[Wed Feb 11 17:31:39.744946 2026] [mpm_prefork:notice] [pid 1:tid 1] AH00163: Apache/2.4.62 (Debian) PHP/8.2.29 configured -- resuming normal operations

[Wed Feb 11 17:31:39.744989 2026] [core:notice] [pid 1:tid 1] AH00094: Command line: 'apache2 -D FOREGROUND'

192.168.1.21 - - [11/Feb/2026:17:31:54 +0000] "GET / HTTP/1.1" 200 3214 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36"

192.168.1.21 - - [11/Feb/2026:17:32:08 +0000] "POST / HTTP/1.1" 200 3973 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36"

192.168.1.21 - - [11/Feb/2026:17:32:19 +0000] "POST / HTTP/1.1" 200 3973 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36"

192.168.1.21 - - [11/Feb/2026:17:32:44 +0000] "POST / HTTP/1.1" 200 3975 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36"


Re: [Help] install nextcloud TOS 7 F2-223

Posted: 13 Feb 2026, 11:04
by TMbuddy
jibe49 wrote: 12 Feb 2026, 22:26
Noted. We will analyze and resolve the issue as soon as possible. Thank you for your feedback and patience.

Re: [Help] install nextcloud TOS 7 F2-223

Posted: 26 Feb 2026, 02:30
by jibe49
TMbuddy
Noted. We will analyze and resolve the issue as soon as possible. Thank you for your feedback and patience.

Still nothing?
JB

Re: [Help] install nextcloud TOS 7 F2-223

Posted: 26 Feb 2026, 11:03
by TMtina
jibe49 wrote: 26 Feb 2026, 02:30
First, stop the Nextcloud container. Then, run 'docker volume rm nextcloud_db nextcloud_nextcloud' to clear Nextcloud data. Next, modify the '- MYSQL_HOST=localhost:3306' entry in the YML file to '- MYSQL_HOST=db'. Finally, restart the container.

Re: [Help] install nextcloud TOS 7 F2-223  [SOLVED]

Posted: 26 Feb 2026, 21:37
by jibe49
TMtina wrote: 26 Feb 2026, 11:03
I don't understand this command :
run 'docker volume rm nextcloud_db nextcloud_nextcloud'
Could you explain please ?
JB