当我尝试通过SnowSQL连接到我的雪花帐户时,我遇到了这个错误。有什么建议可能是这个问题以及如何解决它?
% snowsql -a https://*****.us-east-2.aws.snowflakecomputing.com/ -u *****
Password:
250003 (n/a): Failed to execute request: HTTPSConnectionPool(host='https', port=443): Max retries exceeded with url: //*****.us-east-2.aws.snowflakecomputing.com/.snowflakecomputing.com:443/session/v1/login-request?request_id=6585191e-6947-487e-acae-c2cfc777bd1c (Caused by NewConnectionError('<snowflake.connector.vendored.urllib3.connection.HTTPSConnection object at 0x7f8dc80205f8>: Failed to establish a new connection: [Errno 8] nodename nor servname provided, or not known',))
If the error message is unclear, enable logging using -o log_level=DEBUG and see the log to find out the cause. Contact support for further help.发布于 2021-08-10 15:55:05
您可以尝试以下语法:
snowsql -a帐户名称.us-east-2.aws -u用户名
详情:https://docs.snowflake.com/en/user-guide/snowsql-start.html#connection-syntax
发布于 2021-08-10 15:59:42
我一直在尝试的一件事是,在我解决snowsql连接问题之前,确保我可以使用用户名和密码从控制台/UI登录。你可能已经试过了,lmk。另外,看起来你在URL中漏掉了你的帐户名...这是故意的(为了保密)还是URL可能有问题?
https://stackoverflow.com/questions/68729589
复制相似问题