Tagged Questions
The hostname tag has no wiki summary.
17
votes
6answers
3k views
How can I use python to get the system name?
Note: I do NOT mean "Window XP", "Linux", "OS X", etc.
I'm writing a chat program for a local network. I would like to know who says what so I would like to use python to get the user-set computer ...
8
votes
5answers
5k views
How do I configure the hostname of a Rails app?
I'm working on a fairly traditional forgot password email - I want to email the user a password change token embedded in a link that they can click on in order to change their password. I'm emailing ...
7
votes
4answers
368 views
Recommended way to get hostname in Java
Which of the following is the best and most portable way to get the hostname of the current computer in Java?
Runtime.getRuntime().exec("hostname")
vs
InetAddress.getLocalHost().getHostName()
7
votes
3answers
5k views
Python lookup hostname from IP with 1 second timeout
How can I look up a hostname given an IP address? Furthermore, how can I specify a timeout in case no such reverse DNS entry exists? Trying to keep things as fast as possible. Or is there a better ...
7
votes
4answers
1k views
Extract domain name from a host name
Is there a programatic way to find the domain name from a given hostname?
given -> www.yahoo.co.jp
return -> yahoo.co.jp
The approach that works but is very slow is:
split on "." and remove 1 ...
6
votes
4answers
2k views
Get host name without using HttpRequest
I'm want to run a "background job" in my ASP.NET application (periodically, as separate thread). And I need host name (DNS name or IP) to do my tasks. The problem - HttpContext.Current may be not ...
5
votes
4answers
6k views
Can we set easy-to-remember hostnames for EC2 instances?
I'm running a couple of standard Fedora instances on EC2. I feel the public hostnames of the instances assigned by Amazon are too weird and hard to remember. I'd like to change them to something short ...
4
votes
1answer
120 views
SSL-specific hostname in Heroku with Rails 3.1
I currently have a setup where I force SSL or http where I need it with this before_filter in my application controller:
def force_ssl
if params[:controller] == "sessions"
if !request.ssl? ...
4
votes
3answers
147 views
Full URLs in Rails logs
Is it possible to get the full URLs in the logs of a Rails application? Currently I'm getting something like:
Started GET "/" for 127.0.0.1 at 2011-08-27 13:13:10 +0200
but I need to get:
...
4
votes
2answers
3k views
How to get full host name + port number in Application_Start of Global.aspx?
I tried
Uri uri = HttpContext.Current.Request.Url;
String host = uri.Scheme + Uri.SchemeDelimiter + uri.Host + ":" + uri.Port;
and it worked well on my local machine, but when being published to ...
4
votes
1answer
1k views
Javascript: Difference between location.hostname and document.domain?
What is the difference between using location.hostname and document.domain?
I think an explanation with an example would be helpful.
4
votes
1answer
544 views
getnameinfo prototype asks for sockaddr not sockaddr_in?
The getnameinfo prototype asks for sockaddr but I have only seen examples using sockaddr_in. Can this example be re-written for sockaddr ? sin_family becomes sa_family but what about sin_port and ...
4
votes
3answers
3k views
Get hostname from Rails controller
I am trying to get the hostname of the machine which a rails application is running on from the controller.
What would be the best way to do this taking into account it should work on both windows ...
4
votes
4answers
8k views
how to find host name from IP with out login to the host
i need to find the host name of a UNIX host whose IP is known with out login to that UNIX host
3
votes
4answers
51 views
I want to use jQuery to get the location and the first folder with window.location
I want to get the location and the first folder, like:
http://www.example.com/test/
var $location = window.location.href;
alert ($location);
this returns
...
3
votes
2answers
44 views
Reverse DNS, sending emails and hostname
I don't understand this "reverse dns" thing at all.
So, I have a website - www.someurl.com, and I have an ip address - http://180.160.160.190 (fake).
Now, I want to setup a "reverse dns" thing, so ...
3
votes
3answers
590 views
c# check domain is live
I want to know how I can check if the domain is a live in c#?
I made this
IPAddress[] addresslist = Dns.GetHostAddresses("domain");
it returns the IP(s), which is good, but I want to check if it ...
3
votes
2answers
506 views
IP Address to Hostname in Java?
My hosts file (C:\WINDOWS\system32\drivers\etc\hosts) has a bunch of IP Address to host name mappings:
# Switches
192.168.200.254 sw-con-ctrl
192.168.201.253 sw-con-ctrl-2
192.168.201.254 ...
3
votes
2answers
291 views
Detecting host name in java
Is it possible to detect the hostname used in java (even through a cname)?
I am looking for something similar to this:
http://api.drupal.org/api/function/conf_path/6
In that code, drupal checks to ...
3
votes
4answers
4k views
Resolve Hostname Error When Accessing Subversion
I get the an error when attempting to do the following commands in Subversion:
update, commit, log, list, blame etc.
However, diff and info work.
The error is the following when using any desktop ...
2
votes
1answer
91 views
how to change my hostname in erlang
this is my kvs.erl :
-module(kvs).
-export([start/0, store/2, lookup/1]).
start() -> register(kvs, spawn(fun() -> loop() end)).
store(Key, Value) -> rpc({store, Key, Value}).
lookup(Key) ...
2
votes
2answers
168 views
Zend_XmlRpc_Client underscore in hostname
Running into a issue with Zend as it's throwing a error. I beleive it's due to the underscore in the hostname as Zend does some validation on the URL.
I have a Python client that does the same basic ...
2
votes
1answer
291 views
InetAddress.getByName fails behind proxy
I'm trying to resolve a host name to its' corresponding IP.
My environment is a mac in a corporate network behind a proxy server, which is configured with a .pac file via the system preferences ...
2
votes
2answers
339 views
How do I get the local hostname if unresolvable through DNS in Java?
This sounds like something that should have been asked before, and it has sort of, but I'm looking to get the local hostname and IP addresses of a machine even when it is not resolvable through DNS ...
2
votes
1answer
1k views
Java SSL: how to disable hostname verification
Is there a way for the standard java SSL sockets to disable hostname verfication for ssl connections with a property? The only way I found until now, is to write a hostname verifier which returns true ...
2
votes
2answers
265 views
What is the difference between host name and domain name (syntactically)
I'm trying to implement validation for domain names (in e-mail addresses) and host names. In several other projects I found that for this purpose people use the same function. The question is, are ...
2
votes
1answer
186 views
What does MySQL “::1” hostname refer to?
On a freshly installed (windows version of) MySQL 5.5.9
SELECT user, host FROM mysql.user
gives:
user host
root localhost
root 127.0.0.1
root ::1
...
2
votes
2answers
1k views
InetAddress.getLocalHost() returns wrong result when hostname is 64 chars
I am using below code to print out hostname of a linux box using java 1.5
public static void main(String a[]) {
System.out.println( InetAddress.getLocalHost().getCanonicalHostName() );
}
When I ...
2
votes
2answers
3k views
C++ Windows function call that get local hostname and IP address
Is there built-in windows C++ function call that can get hostname and IP address? Thanks.
2
votes
1answer
346 views
How can I create and manage a multi-tenant ASP MVC application
I want to create a multi-tenant application that uses the hostname to determine the customer.
For example:
CustomerOne.myapp.com
AnotherCo.myapp.com
AndOneMore.myapp.com
...
I can do the database ...
2
votes
3answers
1k views
How can I get a the host name (with port) that a servlet is at
I thought ServletContext might provide a method. Does the getAttribute() method of ServletContext provide any help i.e. is there an attribute name (maybe "host", "port") that will be of help.
The ...
2
votes
4answers
1k views
Java: Common way to validate and convert “host:port” to InetSocketAddress?
What is the common way in Java to validate and convert a string of the form host:port into an instance of InetSocketAddress?
It would be nice if following criteria were met:
No address lookups;
...
2
votes
1answer
3k views
Setting the Hostname in IIS Bindings Breaks Website
I just got a Windows Server 2008 VPS and I'm having trouble getting IIS7 setup.
I created a new website in IIS with the path, ip address, and hostname (like 'www.nameofsite.com') and click OK. When ...
2
votes
6answers
1k views
Regex match a hostname — not including the TLD
I need to match a host name--but don't want the tld:
example.com =~ /regex/ => example
sub.example.com =~ /regex/ => sub.example
sub.sub.example.com =~ /regex/ => sub.sub.example
Any help with the ...
2
votes
1answer
2k views
How to set the hostname on a G1 Phone
I have a root'd G1 phone, and I would like to set its hostname. As root I can run the hostname command and set it, but the name does not survive reboot.
First, I tried creating a /etc/hostname file ...
2
votes
7answers
550 views
What do these abbreviations in network hostnames mean?
When I use traceroute, I often see abbreviations in the hostnames along the route, such as "ge", "so", "ic", "gw", "bb" etc. I can guess "bb" means backbone.
Does anyone know what any these strings ...
1
vote
0answers
20 views
Android: Connections per Hostname
How can I find max HTTP connections per host-name using android?
So far I found this site statistics: http://www.browserscope.org/?category=network&v=top-m
But how can I detect it in run time?
1
vote
1answer
85 views
How can get get computer hostname in other network segment ?
I can get hostname by ip using the method below:
(if we are in the same network segment----in case my IP is 10.167.10.2,other's ip is 10.167.10.5)
InetAddress add= InetAddress.getByName(ip);
String ...
1
vote
1answer
34 views
How do I get the hostname of a connected client in java?
I'm writing a server application and I want to get the hostname of the connecting client, how would I go about doing it in java?
clientSocket.getInetAddress().getHostName() keeps giving me the IP ...
1
vote
3answers
130 views
Mac refusing to change hostname
I've been trying to figure out how to use postfix on my Mac and something has gone horribly wrong and I can't seem to fix it.
I believe the problem is related to starting Postfix.
Basically, the Mac ...
1
vote
3answers
95 views
process-local override of name resolution?
I have test code that I want to have a couple of hostnames resolve to the loopback while testing. When deployed, this code will use the normal system name resolution as appropriate. Test and ...
1
vote
1answer
596 views
Node JS get server hostname of current process
So, I may be missing something simple here, but I can't seem to find a way to get the hostname that the current node process is running under.
Is it possible to figure out what hostname the user is ...
1
vote
3answers
84 views
Changing the hostname for tests in Rails
Apparently, while running tests in Rails, the hostname is "www.example.com". If I run root_url in a test it'll return "http://www.example.com/".
Since I'm doing an app that requires another ...
1
vote
1answer
682 views
rspec route testing and hosts
I see I can test routes with rspec like this:
get("/").should route_to("welcome#index")
but I have constraints based on the hostname or parts of hostnames and redirects between several ones. How do ...
1
vote
1answer
280 views
Selenium Webdriver SSL Certificate Hostname Mismatch Problem
I have recently run into problems using the .NET version of Selenium Webdriver to run tests against a website running in a test environment where the SSL certificate does not match the hostname it’s ...
1
vote
1answer
109 views
mobile devices cannot connect to LAN server via hostname
I have setup a lan with a router, with a few computers connected via both wifi and cables. There are also mobile devices connected to the network.
I have a server running on one of the computers. ...
1
vote
1answer
124 views
Spoofing Javascript.location.hostname
I'm developing an API where a website owner submits their website url to a database, when the user uses the API the javascript hostname gets sent to our database and gets checked against the string ...
1
vote
1answer
312 views
NSNetService works fine, but can't get hostName, resolve causes error
I'm using Bonjour with an NSNetService to publish a server from my iPhone. It all works as expected, I can browse the pages I'm serving etc. However, on the iPhone I want to display the host name ...
1
vote
0answers
129 views
Map hostname without editing Hosts file [closed]
Apparently I downloaded some program and ran it, now whenever I go to some specific websites (http://example.com), it is redirected to the advertising website.
I tried to look into my Hosts file at ...
1
vote
1answer
124 views
Get the hostname from a DataSource class
Is there a way to get the hostname from the DataSource class in java? I mean, I have a DataSource object (DS), which is annotated to get the Jboss datasource. Anyway, I want to get the hostname used ...