0

When I try to run server(rc) in command prompt it is saying it is already used. So, I run the server in 5555 and changed the same in script. However, it still shows

WARN - Failed to start: SocketListener0@0.0.0.0:4444
kush
  • 979
  • 1
  • 15
  • 32
  • 1
    Do you want to start the hub or the node? To start the node you need to start the hub first. – SubRed Nov 28 '12 at 07:46

3 Answers3

1

Have you tried to stop the server using the below link?

http://localhost:4444/selenium-server/driver/?cmd=shutDownSeleniumServer

Just open the above link in the browser you are using to run the tests.

After the opening the above link, the selenium server stops.

Then you can proceed with starting the server from port 4444.

HemChe
  • 2,249
  • 1
  • 21
  • 33
0

Close the browser that is running on port 4444 and then restart the selenium server

Newbie
  • 2,664
  • 7
  • 34
  • 75
0

I had the same problem, type this instead

webdriver-manager --seleniumPort 4455 start

it will start it on port 4455 (you can try different numbers as well)

Paul Preibisch
  • 4,115
  • 2
  • 27
  • 32