AWS ec2 git 克隆或拉取不工作并且没有错误消息
AWS ec2 git clone or pull not working and no error message
我正在尝试在 AWS ec2 中克隆一个 bitbucket 存储库。但它不起作用。并且不给出任何错误信息。
它只是给出消息是
Cloning into 'repo_name'...
我也试过 telnet 命令。
telnet bitbucket.org 443
但它也显示消息
Trying 104.192.143.3...
Trying 104.192.143.1...
Trying 104.192.143.2...
telnet: Unable to connect to remote host: Connection timed out
我看到已分配给此 ec2 的安全组。
进站
HTTP TCP 80 0.0.0.0/0
SSH TCP 22 0.0.0.0/0
出站
All traffic All All 0.0.0.0/0
当我 ping www.google.com 它给出
PING www.google.com (216.58.196.68) 56(84) bytes of data.
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=1 ttl=55 time=9.41 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=2 ttl=55 time=9.21 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=3 ttl=55 time=9.23 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=4 ttl=55 time=9.32 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=5 ttl=55 time=9.17 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=6 ttl=55 time=9.12 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=7 ttl=55 time=9.26 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=8 ttl=55 time=9.29 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=9 ttl=55 time=9.24 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=10 ttl=55 time=9.40 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=11 ttl=55 time=9.12 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=12 ttl=55 time=9.57 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=13 ttl=55 time=9.22 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=14 ttl=55 time=9.16 ms
按照建议在 入站 中允许 HTTPS。
http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Appendix_NACLs.html
此外,如果这不起作用,请尝试使用 弹性 IP
我正在尝试在 AWS ec2 中克隆一个 bitbucket 存储库。但它不起作用。并且不给出任何错误信息。
它只是给出消息是
Cloning into 'repo_name'...
我也试过 telnet 命令。
telnet bitbucket.org 443
但它也显示消息
Trying 104.192.143.3...
Trying 104.192.143.1...
Trying 104.192.143.2...
telnet: Unable to connect to remote host: Connection timed out
我看到已分配给此 ec2 的安全组。
进站
HTTP TCP 80 0.0.0.0/0
SSH TCP 22 0.0.0.0/0
出站
All traffic All All 0.0.0.0/0
当我 ping www.google.com 它给出
PING www.google.com (216.58.196.68) 56(84) bytes of data.
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=1 ttl=55 time=9.41 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=2 ttl=55 time=9.21 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=3 ttl=55 time=9.23 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=4 ttl=55 time=9.32 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=5 ttl=55 time=9.17 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=6 ttl=55 time=9.12 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=7 ttl=55 time=9.26 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=8 ttl=55 time=9.29 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=9 ttl=55 time=9.24 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=10 ttl=55 time=9.40 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=11 ttl=55 time=9.12 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=12 ttl=55 time=9.57 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=13 ttl=55 time=9.22 ms
64 bytes from kul01s09-in-f4.1e100.net (216.58.196.68): icmp_seq=14 ttl=55 time=9.16 ms
按照建议在 入站 中允许 HTTPS。
http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Appendix_NACLs.html
此外,如果这不起作用,请尝试使用 弹性 IP