有一个 nginx 服务器在 8080 端口上侦听,并使用 localhost 和 127.0.0.1 进行远程登录。一个连接,一个连接失败,否则失败。
[test@localhost sbin]$ telnet localhost 8080
Trying ::1...
telnet: connect to address ::1: Connection refused
[test@localhost sbin]$ telnet 127.0.0.1 8080
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.
'localhost' 和 '127.0.0.1' 有什么区别?为什么 localhost 连接失败?谢谢!