Hi again, Has anyone ever tried to start a flow ou...
# prefect-community
k
Hi again, Has anyone ever tried to start a flow out of Node Red or from another docker container? Trying to connect with GraphQL always throws a connection error: error: Error: connect ECONNREFUSED 127.0.0.1:4201 error: Error: connect ECONNREFUSED 127.0.0.1:4200 or error: Error: connect ECONNREFUSED 127.0.0.1:3000 My configuration is default: [server] host = "http://localhost" port = "4200" host_port = "4200" endpoint = "${server.host}:${server.port}" [server.database] host = "localhost" port = "5432" host_port = "5432" name = "prefect_server" username = "prefect" # set to "" to generate a random password each time the database starts password = "test-password" connection_url = "postgresql://${server.database.username}:${server.database.password}@${server.database.host}:${server.database.port}/${server.database.name}" volume_path = "${home_dir}/pg_data" [server.graphql] host = "0.0.0.0" port = "4201" host_port = "4201" debug = false path = "/graphql/" [server.hasura] host = "localhost" port = "3000" host_port = "3000" admin_secret = "" # a string. One will be automatically generated if not provided. claims_namespace = "hasura-claims" graphql_url = "http://${server.hasura.host}:${server.hasura.port}/v1alpha1/graphql" ws_url = "ws://${server.hasura.host}:${server.hasura.port}/v1alpha1/graphql" execute_retry_seconds = 10 Thanks in advance!