0

コマンドを使用prefect server start --postgres-port=5433 --server-port=5001 --hasura-port=5002 --graphql-port=5003 --exposeして、azure ネットワークの許可されたポートで prefect サーバーを起動しました。そして、私がするとき、docker ps私は得ます

CONTAINER ID   IMAGE                          COMMAND                  CREATED          STATUS                    PORTS                                   NAMES
873bfa5bd6bc   prefecthq/ui:core-0.15.7       "/docker-entrypoint.…"   23 minutes ago   Up 23 minutes (healthy)   80/tcp, 0.0.0.0:8080->8080/tcp          tmp_ui_1
9ca79a768265   prefecthq/apollo:core-0.15.7   "tini -g -- bash -c …"   23 minutes ago   Up 23 minutes (healthy)   0.0.0.0:5003->4200/tcp                  tmp_apollo_1
ab7c87ddbabb   prefecthq/server:core-0.15.7   "tini -g -- python s…"   23 minutes ago   Up 23 minutes                                                     tmp_towel_1
ef230baeddb5   prefecthq/server:core-0.15.7   "tini -g -- bash -c …"   23 minutes ago   Up 23 minutes (healthy)   127.0.0.1:5001->4201/tcp                tmp_graphql_1
410c38f08f83   hasura/graphql-engine:v1.3.3   "graphql-engine serve"   23 minutes ago   Up 23 minutes (healthy)   127.0.0.1:5002->3000/tcp                tmp_hasura_1
82748fbc9f4d   postgres:11                    "docker-entrypoint.s…"   23 minutes ago   Up 23 minutes (healthy)   127.0.0.1:5433->5432/tcp                tmp_postgres_1

私の~/.prefect/config.toml

[server]
  endpoint = "http://ipaddress:5003/graphql"

  [server.ui]
  apollo_url = "http://ipaddress:5003/graphql"

次に、サーバーを起動すると、ステータスは図のようになり、ipaddress:8080/getting-started ページにリダイレクトされます ここに画像の説明を入力

正常なステータスを示していなかったので、tmp_towel_1使用のログを確認しましたが、いくつかのエラーが見つかりましたdocker logs ab7c87ddbabb

[Errno 111] Connect call failed ('some_ipaddress_which_i_dont_know_about', 3000)"}

私はそれがdocker network ipか何かだと思います。手がかりがありません。誰かが私が間違っているかもしれない場所を提案できますか?

4

1 に答える 1