LinguaCafe - Confused why the provided docker-compose doesn't work.

Hello everyone,

Recently found LinguaCafe and decided to spin it up. There’s a provided docker-compose with just volumes to specify to your own taste. Pretty easy right?

I can’t make it work. Spent nearly two hours already trying to figure out what I’m missing.

Can someone take a look at my compose file and tell me where I’m stupid?

_____________ EDITS

Progress has been made, I used chmod 777 on the whole app directory and now get the following error : Illuminate\Database\QueryException SQLSTATE[HY000] [1045] Access denied for user ‘linguacafe’@‘ip adress censored’ (using password: YES) (SQL: select count(*) as aggregate from users)


Here’s a somewhat anonymized pastebin, I just removed the password and my name from the file. The rest is basically the file provided by the github + my paths. pastebin.com/u2cbWm2n

github.com/simjanos-dev/LinguaCafe

What happens is, my containers spin up apparently properly. But when I go to :9191, I have this:

imgur.com/a/PiazCcP

I did sudo chmod 777 /home/user/Documents/Docker/LinguaCafe/temp -R as instructed by the documentation.

Never had that happen before. Does anyone know? Thanks

theit8514,

Based on your update you may need to bring the containers down and up to fix the database.

Sometimes when opening LinguaCafe the first time there is an error message about users database table. If this happens, just stop and start your containers again, it should fix the problem.


<span style="color:#323232;">docker compose down
</span><span style="color:#323232;">docker compose up -d
</span>
MangoPenguin, (edited )
@MangoPenguin@lemmy.blahaj.zone avatar

Did you change the mysql container database name, username and password to something other than the default linguacafe ?

That would break it, as it’s using those specific credentials to login to the database. Which would cause Access denied for user ‘linguacafe’@‘ip adress censored’ (using password: YES) (SQL: select count(*) as aggregate from users)

Try with the default, you’ll need to wipe the mysql data under /home/user/Documents/Docker/LinguaCafe/database/ after stopping the container first.


<span style="color:#323232;">    environment:
</span><span style="color:#323232;">        MYSQL_DATABASE: linguacafe
</span><span style="color:#323232;">        MYSQL_USER: linguacafe
</span><span style="color:#323232;">        MYSQL_PASSWORD: linguacafe
</span><span style="color:#323232;">        MYSQL_ROOT_PASSWORD: linguacafe
</span><span style="color:#323232;">        SERVICE_NAME: linguacafe
</span>
Natal, (edited )

I think I solved the permission issue? See edit in the main post.

mouse,
@mouse@midwest.social avatar

That error message says it the permissions of the /home/user/Documents/Docker/LinguaCafe/logs directory. You can try changing it full r/w temporarily to test.

1984,
@1984@lemmy.today avatar

Hmm, can you have absolute paths like that in docker compose? Ive always used paths relative to the current working dir.

redcalcium,

Probably just a permission issue. The doc seems to recommend giving relaxed permission to the temp folder volume:

sudo chmod 777 /your/linguacafe/temp/folder -R

Natal,

sudo chmod 777 /your/linguacafe/temp/folder -R

I have done that and it doesn’t seem to help. Edited main post to reflect that.

redcalcium,

Now you seems to get MySQL permission issue (or wrong database password, but your issue is probably not that). When using docker compose, MySQL won’t see access coming from linguacafe’s container as coming from localhost, but instead it’s coming from a different IP address inside docker subnet. So make sure your MySQL user has proper privilege, e.g. by granting all permissions to ‘user’@‘%’.

SeeJayEmm,
@SeeJayEmm@lemmy.procrastinati.org avatar

Reads to me like the container it’s running as a user that doesn’t have permission to the volume path.

Natal,

Is there a command to check that?

SeeJayEmm,
@SeeJayEmm@lemmy.procrastinati.org avatar

I’m not sure if there’s a correct way. What I’ve done in the past is use “ps” to find out what user the processes are running as.

singularity,

You seem to be missing your username in the volume paths, e.g. /home/username/Documents.

Natal, (edited )

Sorry that’s on me. That’s one thing I removed from the pastebin file on purpose, it’s here in the real one. I copy paste my path to be sure it’s correct.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • selfhosted@lemmy.world
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #