You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The docker compose up command correctly but when deploy is done i only get this page
the problem when the deploy are made and the user for the mariadb container is not configurated correctly, i have try deploying this is linux and windows docker container successfully so is not problem of the docker compose file itself
someone has found the fix for this problem ? i will like to run this in my server, any help is welcome
Here is the error trace of nexterp-db-1 container
nexterp-db-1 | |
-- | -- | --
date | stream | content
2025/01/06 12:39:45 | stderr | 2025-01-06 18:39:45 215 [Warning] Access denied for user '_5e5899d8398b5f7b'@'172.25.0.4' (using password: YES)
| |
2025/01/06 12:38:45 | stderr | 2025-01-06 18:38:45 172 [Warning] Access denied for user '_5e5899d8398b5f7b'@'172.25.0.4' (using password: YES)
| |
2025/01/06 12:37:45 | stderr | 2025-01-06 18:37:45 128 [Warning] Access denied for user '_5e5899d8398b5f7b'@'172.25.0.4' (using password: YES)
| |
2025/01/06 12:36:45 | stderr | 2025-01-06 18:36:45 83 [Warning] Access denied for user '_5e5899d8398b5f7b'@'172.25.0.4' (using password: YES)
| |
2025/01/06 12:35:45 | stderr | 2025-01-06 18:35:45 38 [Warning] Access denied for user '_5e5899d8398b5f7b'@'172.25.0.4' (using password: YES)
| |
2025/01/06 12:34:54 | stderr | Version: '10.6.20-MariaDB-ubu2004' socket: '/run/mysqld/mysqld.sock' port: 3306 mariadb.org binary distribution
| |
2025/01/06 12:34:54 | stderr | 2025-01-06 18:34:54 0 [Note] mariadbd: ready for connections.
| |
2025/01/06 12:34:53 | stderr | 2025-01-06 18:34:53 0 [Note] Server socket created on IP: '::'.
| |
2025/01/06 12:34:53 | stderr | 2025-01-06 18:34:53 0 [Note] Server socket created on IP: '0.0.0.0'.
The connection between the container was correct actually the errors came from the backend container try to connect to the db container
i follow the troubleshoot.md documentation inside the repo and run these commands and restart the whole docker container fix the problem for me, the only difference is that i have to create the user, not update it, as i said is look to be a problem , probably realted to user permissions when creating the user for nexterp inside the mariadb container
CREATEUSER 'db_name'@'%' IDENTIFIED BY 'your_password';
-- UPDATE mysql.global_priv SET Host = '%' where User = 'db_name'; FLUSH PRIVILEGES;SET PASSWORD FOR 'db_name'@'%'= PASSWORD('db_password'); FLUSH PRIVILEGES;
GRANT ALL PRIVILEGES ON`db_name`.* TO 'db_name'@'%' IDENTIFIED BY 'db_password' WITH GRANT OPTION; FLUSH PRIVILEGES;
EXIT;
maybe an update of the documentation can be useful
Using the
pwd.yml
file on root folder with the only change been the port of the frontendThe
docker compose up
command correctly but when deploy is done i only get this pagethe problem when the deploy are made and the user for the mariadb container is not configurated correctly, i have try deploying this is linux and windows docker container successfully so is not problem of the docker compose file itself
someone has found the fix for this problem ? i will like to run this in my server, any help is welcome
Here is the error trace of
nexterp-db-1
containerand the
nexterp-backend-1
container error traceThe text was updated successfully, but these errors were encountered: