无法通过 SSH 连接到 Oracle 云实例
Cannot SSH to Oracle Cloud Instance
目标:尝试从 Mac 终端访问 Oracle 云实例。
我正在使用的 SSH 命令:
ssh –i <private_key_file> username @ public ip address of instance
它给出:
Error: ssh: Could not resolve hostname ?03i:
nodename nor servname provided, or not known
我正在遵循本手册:
https://docs.oracle.com/en-us/iaas/Content/Compute/Tasks/accessinginstance.htm
如有任何帮助,我们将不胜感激。
当您按照包含以下内容的教程进行操作时:
ssh –i <private_key_file> <username>@<public-ip-address>
请确保您没有在 –i
中使用长 –
,而是手动输入常规减号“-
”
A long dash 有一个八进制转义序列 203
,这可以解释您在输出中看到的 03
。
目标:尝试从 Mac 终端访问 Oracle 云实例。
我正在使用的 SSH 命令:
ssh –i <private_key_file> username @ public ip address of instance
它给出:
Error: ssh: Could not resolve hostname ?03i:
nodename nor servname provided, or not known
我正在遵循本手册:
https://docs.oracle.com/en-us/iaas/Content/Compute/Tasks/accessinginstance.htm
如有任何帮助,我们将不胜感激。
当您按照包含以下内容的教程进行操作时:
ssh –i <private_key_file> <username>@<public-ip-address>
请确保您没有在 –i
中使用长 –
,而是手动输入常规减号“-
”
A long dash 有一个八进制转义序列 203
,这可以解释您在输出中看到的 03
。