Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 262
barbara Avatar asked May 24 '16 22:05

barbara


People also ask

How do I change my localhost IP address Mac?

On your Mac, choose Apple menu > System Preferences, then click Sharing . If the lock at the bottom left is locked , click it to unlock the preference pane. Click Edit, then enter a new local hostname.


1 Answers

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.

like image 160
Jerome Poslednik Avatar answered Oct 24 '22 20:10

Jerome Poslednik