How to bind localhost to 127.0.0.1 on Mac? [closed]

断了今生、忘了曾经 提交于 2019-12-21 01:28:07

问题


I have a running web application on my local machine. To get access to it I can use localhost:8080. But when I try to use http://127.0.0.1:8080 address my browser says: The 127.0.0.1 page isn’t working.

Ping to it does not work as well:

ping 127.0.0.1:8080
ping: cannot resolve 127.0.0.1:8080: Unknown host

How can I fix it?


回答1:


Open a terminal window and type this line:

sudo open -a TextEdit /etc/hosts

You will be prompt to type in your admin password and your host file will open in TextEdit. Add this line in your host file :

127.0.0.1       localhost

Save the file and close. That's it.



来源:https://stackoverflow.com/questions/37425150/how-to-bind-localhost-to-127-0-0-1-on-mac

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!