Metabase.db.mv.db file's default location

I make a directory named "mb", and put the jar file in this directory.
and then I start metabase using the start.sh, like this:

#!/usr/local/bin/bash
nohup java -jar metabase.jar >/Users/vincen/Logs/metabase.log 2>&1 &

and I did not see the "metabase.db.mv.db" or other files in directory.

pls help me, where is the location of the metabase.db.mv.db file?

and my operation system is : mac os 11.6.5

Hi @vincen
The H2 file is created in the pwd of the java command.
You can define it manually via
java -DMB_DB_FILE=/some/location/metabase.db -jar metabase.jar
https://www.metabase.com/docs/latest/operations-guide/configuring-application-database.html
It is not recommended to use H2 in production.