Hosts File Mac

  1. Hosts File Mac Os X
  2. Mac Edit Host File Terminal
Hosts File Mac
  1. The hosts file used by Mac OS X is in /etc/. Windows users sometimes have problems finding it since there’s no%SystemRoot% system32 drivers etc folder in the Mac OS. UNIX users might not expect /etc/ to be hidden by the Mac OS X Finder, so they often look in /Library/Application Support/.
  2. All Mac computers store a small, text based file called 'hosts'. Modifying this file is sometimes necessary to solve connection problems, set your own web server, and instruct the system to block access to specific websites (thus to prevent opening malicious websites).

Introduction

The hosts file is a file you will find on both Windows 10 and macOS. You can use it to block access to any website you want. We’ve discussed how you can edit the hosts file on Windows 10. If you want to block websites on macOS by editing the hosts file on it, you will find that it’s not as simple to access it. Normally your Mac doesn’t find what it’s looking for in the hosts file and quickly moves on to resolving the web address via the DNS (Domain Name System) server. With a little tinkering you can use the hosts file to make sure your Mac doesn’t resolve certain URLs via the DNS server. Mac Hosts File Location. Since editing the hosts file is a risky task, Apple has intentionally placed it in a private folder on your system. That’s to prevent users from modifying it without proper knowledge and causing damage to the entire system.

The Hosts File is an essential tool to change how your computer views a particular website. While most users will never need to alter their Hosts File, a web developer or user may need to modify the file to view a new site that is still under development.

To make your computer display your test website rather than the live site, you must add the test site's IP address, along with the domain name, to the Hosts File. As long as that information is contained in your Hosts File, your browser will redirect the request to display the site on the specified IP address. This allows us to test functionality without modifying the DNS for our production site.

We've included step-by-step instructions for locating the Hosts file, but you can also watch this video:


Hosts File Location

But where is the Hosts file on our Mac located, and how do we edit it? The Hosts file on a Mac is found in the /etc/hosts folder. To edit the file, follow the steps below.

1. Launch the macOS Terminal application.
2. Go to the Finder, then Click Go.
3. Click Utilities.

4. Double-click Terminal to launch the Terminal window.

5. Now, enter the following command: sudo nano /etc/hosts

6. Then, enter the sudo password for your user to allow edit access to the file.

7. Next, use the arrow keys to move the cursor to the bottom of the file. On a new line, enter the testing server's IP address and the domain name you want to use for that IP address. (In the example below, we used the IP address 123.123.123.123 and the domain name mydomain.com)

8. Next, press Control+O to overwrite the existing file, then press Enter to confirm the overwriting. This saves the changes to the file.

9. Now, press Control+X to exit the nano editor.

10. Finally, to update our browsers DNS records and make these changes go live in your browser, enter the following command: sudo killall -HUP mDNSResponder

Hosts File Mac Os X

Conclusion

Mac Edit Host File Terminal

You have successfully edited your Hosts File and can now begin loading your test site from your testing IP address rather than your live server.