Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

can anyone help ?? i am getting this error while connecting..

abort: error: nodename nor servname provided, or not known

please help me out.

Actually I want to get the source of coreplot from a repository I am executing this command in the terminal

"hg clone core-plot.googlecode.com/hg core-plot "

and i get the error ...

"abort: error: nodename nor servname provided or not known,"

Can any1 help me?

share|improve this question
Please provide more details: connecting to what? – Jeremy Cron Aug 10 '09 at 12:37
What are you trying to connect to? Using what utility/library/language/protocol? We're not telepaths. – Meredith L. Patterson Aug 10 '09 at 12:38

3 Answers

Check your proxy settings. I've had issues with having my http_proxy/https_proxy environment variables set to a corporate setting while off-corp-LAN and have seen similar responses.

share|improve this answer
Thanks. That was precisely my problem. – James Polley Feb 22 '12 at 8:50

Try

hg clone https://core-plot.googlecode.com/hg/ core-plot

Note that the https:// is required.

share|improve this answer
Hi Eric ,I tried that but still I am getting the same error.Do I have to change any settings before executing the command?... – Bhawani Aug 11 '09 at 4:21

While it's not 100% related (as I think the original issue was a missing "https://") I wanted to post my problem for SO google-juice.

I was having the same error message when cloning from bitbucket.org; I had missed adding @ to the url:

hg clone https://<my_username>@bitbucket.org/<someone>/<project>/
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.