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
Hello
Since omnivore is going down, I decided to try wallabag, but I hit a snag.
I'm trying to install via docker compose.
Everything gets installed
But...
Mariadb returns: [Warning] Aborted connection 3 to db: 'unconnected' user: 'unauthenticated' host: '172.29.0.4' (This connection closed normally without authentication)
I found the supposed solution to this issue at the mariadb-docker github page:
Adding this command: --character-set-server=utf8mb4 --collation-server=utf8mb4_bin
to the mariadb compose would fix the problem..
So I did and nothing changed.. it still returns the same error.
I already tried:
several different mariadb versions from 10.4 to 11.4.2.
only --character-set-server=utf8mb4 in command
Have anyone gone through the same problem?
Thank you!
The text was updated successfully, but these errors were encountered:
TL;DR
Add POPULATE_DATABASE=false to your compose file (under the Wallabag service)
In terminal run the following: docker container ls -a
Take the ID of wallabag and use it in these commands
Had some permission errors in the Wallabag log after, so had to run this to stop them. docker exec -t wallabag chown -R nobody:nobody /var/www/wallabag
Hello
Since omnivore is going down, I decided to try wallabag, but I hit a snag.
I'm trying to install via docker compose.
Everything gets installed
But...
Mariadb returns:
[Warning] Aborted connection 3 to db: 'unconnected' user: 'unauthenticated' host: '172.29.0.4' (This connection closed normally without authentication)
I found the supposed solution to this issue at the mariadb-docker github page:
Adding this
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_bin
to the mariadb compose would fix the problem..
So I did and nothing changed.. it still returns the same error.
I already tried:
--character-set-server=utf8mb4
in commandHave anyone gone through the same problem?
Thank you!
The text was updated successfully, but these errors were encountered: