如何更改元数据库在 linux 上的访问端口?
How to change metabase's access port on linux?
我在 linux
上更改配置数据库的端口时遇到问题
https://www.metabase.com/docs/latest/operations-guide/running-the-metabase-jar-file.html中描述的方法,但我不清楚我必须做什么
the page's screenshot
之后教程指向https://www.metabase.com/docs/latest/operations-guide/environment-variables.html,但我还是没看懂
如果有其他解决办法,请告知,万分感谢
我不熟悉元数据库,但是您链接到的文档说:
You can use another port than 3000 by setting the MB_JETTY_PORT environment variable before running the jar.
因此,我会尝试 运行 在我的 Bash shell 中使用以下命令来为 shell:
设置环境变量
export MB_JETTY_PORT=12345
然后,在同一个 shell 中,我将 运行 用于启动 JAR 文件的任何命令。
您可以随时 运行 echo $MB_JETTY_PORT
检查该环境变量的值,或 运行 env
查看所有环境变量。
或者,如果您愿意,Bash 具有为单个命令临时设置环境变量的语法。语法是:
MB_JETTY_PORT=12345 your_command_here
如果您没有使用 Bash,您的另一个 shell 可能有类似的方法来设置环境变量。
我在 linux
上更改配置数据库的端口时遇到问题https://www.metabase.com/docs/latest/operations-guide/running-the-metabase-jar-file.html中描述的方法,但我不清楚我必须做什么
the page's screenshot
之后教程指向https://www.metabase.com/docs/latest/operations-guide/environment-variables.html,但我还是没看懂
如果有其他解决办法,请告知,万分感谢
我不熟悉元数据库,但是您链接到的文档说:
You can use another port than 3000 by setting the MB_JETTY_PORT environment variable before running the jar.
因此,我会尝试 运行 在我的 Bash shell 中使用以下命令来为 shell:
设置环境变量export MB_JETTY_PORT=12345
然后,在同一个 shell 中,我将 运行 用于启动 JAR 文件的任何命令。
您可以随时 运行 echo $MB_JETTY_PORT
检查该环境变量的值,或 运行 env
查看所有环境变量。
或者,如果您愿意,Bash 具有为单个命令临时设置环境变量的语法。语法是:
MB_JETTY_PORT=12345 your_command_here
如果您没有使用 Bash,您的另一个 shell 可能有类似的方法来设置环境变量。