Difference between revisions of "Flush DNS Resolver Cache"

From Hostek.com Wiki
Jump to: navigation, search
(Created page with "__FORCETOC__ == How to Flush Your DNS Resolver Cache == Sometimes you may need to flush your computer's DNS Resolver Cache. The DNS Resolver Cache within your operating syst...")
 
(Mac OS X)
Line 19: Line 19:
 
=== Mac OS X ===
 
=== Mac OS X ===
  
Open up the Terminal application and enter the following command:
+
The command to clear the DNS cache is different depending upon which version of OS X is installed on your Mac. To determine this version, click the Apple icon at the top left of the screen, then "About This Mac". Then, open the Terminal application and enter the command listed below based upon the OS X version.
  
    dscacheutil -flushcache
+
OSX 10.10 (Yosemite)
 +
<pre> sudo discoveryutil udnsflushcaches </pre>
  
 +
OSX 10.9 (Mavericks)
 +
 +
dscacheutil -flushcache; sudo killall -HUP mDNSResponder
 +
 +
 +
OSX 10.7  – 10.8 (Lion and Mountain Lion)
 +
 +
sudo killall -HUP mDNSResponder
 +
 +
OSX 10.5 – 10.6 (Leopard and Snow Leopard)
 +
 +
sudo dscacheutil -flushcache
  
 
=== Linux ===
 
=== Linux ===

Revision as of 04:23, 13 January 2015


How to Flush Your DNS Resolver Cache

Sometimes you may need to flush your computer's DNS Resolver Cache. The DNS Resolver Cache within your operating system stores the location of Web sites you visit on the Internet. This is intended to improve browsing speed, but sometimes it needs to be cleared to ensure good performance (for example, if you recently moved your site to a new server). Instructions for flushing the DNS Resolver Cache on several operating systems are below.

Windows

  • Open a command prompt.
    • One way to do this is to open the Start Menu, click Run, type cmd, and press enter
      • In Windows 7 you can just open Start and type cmd and press enter
    • If your account is not an Administrator, you'll need to run the command prompt as Administrator.

In the command prompt type the following and press enter:

   ipconfig /flushdns


Mac OS X

The command to clear the DNS cache is different depending upon which version of OS X is installed on your Mac. To determine this version, click the Apple icon at the top left of the screen, then "About This Mac". Then, open the Terminal application and enter the command listed below based upon the OS X version.

OSX 10.10 (Yosemite)

 sudo discoveryutil udnsflushcaches 

OSX 10.9 (Mavericks)

dscacheutil -flushcache; sudo killall -HUP mDNSResponder


OSX 10.7 – 10.8 (Lion and Mountain Lion)

sudo killall -HUP mDNSResponder

OSX 10.5 – 10.6 (Leopard and Snow Leopard)

sudo dscacheutil -flushcache

Linux

From the terminal, enter the following command at the prompt:

   /etc/rc.d/init.d/nscd restart