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

I'm working on Selenium and I currently have a hub connected to two vms running linux with all the browsers.

I was able to launch browsers until suddenly it just stopped . Firefox or any of the other browsers don't launch. I get the following error.

Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms.

I am running Selenium-server-standalone 2.26 with firefox 16.0.2 .

Please help.

share|improve this question
This is the error I get : Exception in thread "main" org.openqa.selenium.WebDriverException: Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms. Firefox console output: Error: no display specified Error: no display specified Command duration or timeout: 45.88 seconds Build info: version: '2.25.0', revision: '17482', time: '2012-07-18 22:18:01' System info: os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.8.2', java.version: '1.7.0_09' Driver info: driver.version: RemoteWebDriver Session ID: at – user1807948 Nov 8 '12 at 2:44
did u try checking restarting the selenium nodes ? – Harshavardhan Konakanchi Nov 8 '12 at 14:44

1 Answer

Try running this before you start your Selenium server:

export DISPLAY=:0
share|improve this answer
It Worked !! Thank you so much !!! – user1807948 Nov 8 '12 at 18:53
Please mark my answer as the solution (accept it) if it helped you. – amey Nov 8 '12 at 19:17

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.