Selenium: Invalid “already running” error when starting server

后端 未结 15 2237
名媛妹妹
名媛妹妹 2021-01-31 02:32

I am trying to get the Selenium server up and running. However, when I type:

java -jar selenium-server-standalone-2.0b3.jar

I get an Exception

15条回答
  •  南笙
    南笙 (楼主)
    2021-01-31 03:09

    In OSX if you follow the command from @HaloWebMaster (lsof -i -n -P | grep 4444) the next step is to take the PID (usually a 4 - 5 digit number indicating the process ID) and run the following command:

    kill -9

    You shouldn't need sudo unless the process was started by another user or root.

提交回复
热议问题