A `hosts` file is used to map hostnames to IP addresses on a TCP/IP-enabled computer.

learn more… | top users | synonyms

0
votes
1answer
20 views

Webfaction Mezzanine ALLOWED_HOSTS 200 error

So my site shows up fine with DEBUG = True, but I get a 200 server error when I change it to False. I've been reading around and saw that 500 errors are common but I can't find anything on a 200 ...
0
votes
1answer
25 views

Hosts file missing on Mac OS X - Xcode Failing to compile code

I've tried to run my first objective-c code in Xcode... Compilation process was successfully, however an error returns " invalid host string: 'localhost' ". After some Googling, I found out and ...
2
votes
2answers
80 views
+500

Is it possible to add a hosts file entry to make it look like my files are on another machine?

I have file share called "\myserver1\data_input". I have an application that I want to run which is supposed to move data from one server to another via file shares. I really want to try and deploy ...
0
votes
0answers
12 views

Wamp error when i try To Assign a Virtual Local Domain Name To my Localhost

I tried To Assign a Virtual Local Domain Name To my Localhost on wamp and i chenged the httpd file from Apace adding this: NameVirtualHost 127.0.0.1 <VirtualHost 127.0.0.1> ServerName ...
0
votes
0answers
30 views

MAMP Pro very slow connecting to localhost - strange result in etc/hosts

I've installed MAMP Pro for local site development and been trying to set up some virtual hosts. Connecting to the sites or phpMyAdmin has become incredibly slow. I've followed a lot of the advice in ...
-1
votes
0answers
26 views

How to connect virtual machines on different hosts using “host only network adapter” [closed]

I'm trying to setup something similar to what's described at this link (http://blog.superuser.com/2011/04/25/virtualbox-and-networking-how-you-do-it/) - section - "Host Only with Network Routing", but ...
0
votes
0answers
11 views

xcopy invalid parameters not quotes

I'm trying to run a batch file from a computer on my LAN to update the hosts files on startup for all the computers in my computer lab. This is what my script looks like. xcopy ...
1
vote
1answer
25 views

How to make http request in nodejs to url which is not linked to DNS but registered in hosts file?

I am working on remote sandbox with ip 190.34.24.56 (not real ip, just for example) Hosts file contains this string: 190.34.24.56 web.sandbox.com I have access to url web.sandbox.com from browser, ...
0
votes
1answer
20 views

Local URL IP redirect via port

I do a lot of custom web development and I am looking for a solution to a problem with testing. I have a local development server that I run sandboxed environments on. When I need to test something I ...
-1
votes
0answers
24 views

How do I change DNS records without editing 'hosts' file? [closed]

I thought that a possible solution would be hooking the API responsable to make DNS requests. Is there any API used in major browsers such as Internet Explorer, Firefox, Google Chrome and Opera to ...
0
votes
1answer
29 views

Program runs as SYSTEM still not able to edit hosts file

I'm trying to edit the hosts file while my program is started as "NT AUTHORITY\SYSTEM" with psexec, and I still get UnauthorizedAccessException. I thought that SYSTEM should be able to edit hosts file ...
1
vote
2answers
83 views

Passing a Fabric env.hosts sting as a variable is not work in function

Passing a Fabric env.hosts sting as a variable is not work in function. demo.py #!/usr/bin/env python from fabric.api import env, run def deploy(hosts, command): print hosts env.hosts = ...
1
vote
3answers
74 views

How to replace a string in the host file using batch?

I'm trying to write a batch file to find and replace an IP address in the hosts file. I did a bit of research and found this, but it doesn't seem to work. I get the final echo of "Done." but it ...
0
votes
0answers
24 views

apache virtual hosts - include files on top level?

I'm looking for a way to create virtual hosts with Xampp and give them additional include paths. I can't find anything about how to do such a thing ? I have several websites with domains: blah.com ...
0
votes
0answers
28 views

DNS resolution on Windows 2008 R2

Our admins provided us with a VM of Windows 2008 R2 on which we have installed Apache+PHP and Tomcat7. We also have dedicated MySQL server. Testing Apache and Tomcat with a browser by typing ...
0
votes
0answers
26 views

Getting 403 forbidden error for specific domain

I have a website configured on a IP address say 123.123.123.123 and I am trying to re-direct 4 domains to this IP address using windows HOSTS file. So the entries in my hosts file is something like ...
0
votes
1answer
215 views

WAMP Server virtual hosts configuration

OK, I have my wamp installed and simply can't setup my virtual hosts properly. Here's what I have: Wamp install dir: F:\wamp Projects dir: F:\www # ...
5
votes
2answers
169 views

speed up apache redirects by putting dns in hosts file

i am using apache and have a domain e.g.: www.example.com. I redirected example.com to www.example.com by using this: http://stackoverflow.com/a/1100363/441907 I also have a virtual host entry for ...
1
vote
2answers
58 views

Redirect example.com to rails server running on localhost:3000 leaving apache sites intact?

I am working on a rails app which runs on localhost:3000. I want example.com to point to localhost:3000. I edited the /etc/hosts file but it doesn't take port number so the request goes to apache. I ...
1
vote
1answer
25 views

vhosts only shows one root for all domains

I am using MAMP. I want separate domains to use different roots on my local computer. I want "localhost" to go to my htdocs folder. I want "wowzers.loc" to use /Donald/Projects/wowzers as its root. ...
0
votes
0answers
109 views

mac osx /etc/hosts file being ignored

i am a web developer and use my macbook pro for work, recently i upgraded my OSX to 10.7.5 and all hell broke loose. i use ubuntu server to on virtual box to host my webserver and now it seems like my ...
1
vote
1answer
83 views

python - get hostname values from each line /etc/hosts

I have a cronjob that uses the AWS SDK (PHP) to update the /etc/hosts file that writes the current EC2 private IP along with a friendly hostname for each server. In Python, I'm trying to read the ...
0
votes
0answers
61 views

use httpclient to send request over ip is slow

Now, i come with a strange question. I send http request with httpclient. In the request, when i use domain name, like dynamic.12306.cn, or i use ip address and put the ip information in ...
0
votes
1answer
30 views

Apache : can't load resources in running several name-based web sites on a single IP address

I run two name-based web sites on a single IP address : mydomain.com and preprod.mydomain.com target the same IP. I configure apache and hosts file, but now the access to preprod.mydomain.com is very ...
4
votes
0answers
340 views

Android emulator hosts file

I wonder how I could update host file on a android virtual device? Each time I reopen emulator it appears with defaul hosts file, so I pull hosts file everytime. what I do now: emulator.exe -avd ...
3
votes
2answers
210 views

dns lookup not working while offline

i have setup my acrylic dns proxy to include some addresses to redirect to localhost- therefore i am able to redirect specific domain names to my local machine, without any need to look anything up on ...
-1
votes
1answer
139 views

My hosts file under Mac OS X 10.8 is empty [closed]

I just opend my hosts file via the terminal and I must have accidentally wiped it last time I opened it! Does anybody have the standard file content?
1
vote
0answers
19 views

using loadleveler to manage client server application

I have two applications one in C language [which acts as a TCP server] and other in C++ [which acts as a TCP client]. I have to run them in a cluster which uses loadleveler. The client needs to know ...
0
votes
1answer
250 views

Unable to determine IP address from host name, The domain name does not exist

A local website is set up on a server. The website test.skien.kommune.no is mapped to 127.0.0.1 The site is configured in IIS and I have added a binding. Everything worked for a week, but today I ...
0
votes
0answers
57 views

Is there a way change hostname ip mapping for a process/thread temporarily using ruby or linux command?

Is there a way to set the hostname ip mapping temporarily for a process using ruby or some native linux command? The objective is to make the process aware of the hostname and its ip. The rest of the ...
0
votes
1answer
41 views

How to reference a hostname in a hosts file?

I connect to local servers on the same network as "staging.local" (where staging is the hostname on the local server). Is it possible to do the name in os x hosts file like this: staging.local ...
0
votes
1answer
189 views

What permissions should /private/etc/hosts have on Mac OS X 10.8.2 [closed]

I had multiple terminal windows open using SSH to access a webserver behind reverse proxies and was making changes to my hosts file to alternate between the webserver and public ip. While not paying ...
1
vote
1answer
58 views

Ruby: Parse API Response

I am trying to geht this script to run: http://dysinger.net/2008/10/13/using-amazon-ec2-metadata-as-a-simple-dns but dosnt work because it is using an old amazon sdk version, i rewrote it to use the ...
1
vote
0answers
34 views

PHP page timed out, now browser is putting www in front of my url

I was running a very time consuming script on my localhost, and I thought I'd correctly set it up to not time out using this code: ini_set('max_execution_time', 300); However, before the 5 minutes ...
0
votes
2answers
54 views

How to rename a document with bash?

I need to make this bash script: #!bin/bash echo "Checking if root…." if [[ $(/usr/bin/id -u) -ne 0 ]]; then echo "Not running as root" exit fi echo -ne "Downloading NEW hosts blocking file: ...
0
votes
0answers
241 views

'hosts' file in 'C:\Windows\System32\drivers\etc' automatically renamed to 'tmphosts'

I am using hosts file in 'etc' directory on IIS7. I am experiecing a very strange problem. The hosts file automatically renamed to tmphosts after an uncertain period of time. Usually after rebooting ...
0
votes
1answer
132 views

Hostname cannot be resolved to IP address

I have recently started running a VPS through godaddy and I continue to receive the following automatically generate email from cPanel: Your hostname (server.mydomain.com) could not be resolved to an ...
-2
votes
1answer
23 views

using includes in a hosts file

Can I do something similar to apache Include with my hosts file? /etc/hosts 127.0.0.1 localhost Include /something/test-hosts /something/tests-hosts 127.0.0.1 test.local
-1
votes
1answer
26 views

Directing a live domain to a virtual machine via hosts [closed]

Here's the goal: I want www.foo.com, which exists in the wild and is currently redirecting to www.foobar.com in the wild, to resolve to my vm site. I'm working on foo.com locally in a vm with ...
0
votes
1answer
41 views

Faking multitenancy via host file

I am trying to simulate multitenancy for testing purposes on my development PC via the hosts file. 127.0.0.1 localhost 127.0.0.1 test1.gwd.nl 127.0.0.1 test2.gwd.nl When I run my website (MVC4, ...
0
votes
1answer
368 views

RMI needs java.rmi.server.hostname for NAT, so what's the way other technology like CORBA to resolve NAT issue?

In Java, if client needs to open connection to RMI server, we need to specify -Djava.rmi.server.hostname=hostxxx to server's startup parameter, and add hosts entry to client's hosts file like below: ...
0
votes
1answer
65 views

'Hosts' file change, response time lag [closed]

I am trying to block access to certain 'bad' websites by editing the hosts file. The method I use is append "127.0.0.1 www.bad_website.com" to the hosts file (...System32\driver\etc\hosts - i think ...
0
votes
0answers
109 views

Editing “hosts” file, vs. Proxy Server? [closed]

I want to prevent access to certain websites. So far I've found two ways: Edit hosts file (...\System32\drivers\etc\hosts) Make (program) a proxy server, and filter requests using a blacklist (not ...
0
votes
1answer
50 views

Apache Virtual Host Site Inaccessible

I'm setting up a dedicated server with multiple virtual hosts. The DNS is registered correctly... $ ping mydomain.com $ ping 8.8.8.8 (for example) Both return the IP address as expected and it's ...
-1
votes
2answers
122 views

Hosts file - null route - local server [closed]

I am using the mvps.org hosts file to block unwanted connections locally. The problem is that I am running nginx listening on 80, and all the blocked sites are routing through nginx to my unicorn web ...
-1
votes
1answer
149 views

Improper behavior of Host Alias

I have two host alias in my directory structure that fail to properly register with g-wan. My folder structure is as follows: /srv/gwan_linux64-bit/192.168.3.101_80/$dg.lcl ...
1
vote
0answers
84 views

How do you set up a domain alias while running dnsmasq?

I know the following rules in my dnsmasq.conf file will redirect all requests with a ".dev" top level domain back to my local machine. listen-address=127.0.0.1 address=/.dev/127.0.0.1 The problem ...
0
votes
3answers
368 views

1 Liner Script to get IP Address of server (ifconfig) and append to HostName to /etc/hosts for matching ipaddress

I have the following /etc/hosts file [root@vhost41 tmp]# cat hosts 127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 ::1 localhost localhost.localdomain ...
0
votes
1answer
78 views

cURL in php 5.4.10 and windows file hosts

First, sorry for my english. I updated php and configure it with nginx. It's work fine. But in my php app i use cURL. And it nor working with my vhosts. Im, set this in my windows hosts file: ...
-1
votes
2answers
90 views

Does the apache will create a folder recursively if the given log folder does not exists in the server? [closed]

For example, I have a log path called /home/log/error.log. In this case log folder doesn't exists. While giving the DocumentRoot I have given the log path like above <VirtualHost *:80> # ...

1 2 3 4 5