Issue Selenium hub with appium ,server response code : 500

I am trying to connect selenium server with appium node with the below command

Command for Register Hub :
java -jar selenium-server-standalone-2.44.0.jar -role hub -port 4433 &

Command for Register Node
appium --nodeconfig /PATH/grid/node.json

- node.json file

{
“capabilities”:
[
{
“browserName”: “iPhone5”,
“version”:“8.1”,
“maxInstances”: 1,
“platform”:“MAC”
}
],
“configuration”:{
“cleanUpCycle”:2000,
“timeout”:30000,
“proxy”:“org.openqa.grid.selenium.proxy.DefaultRemoteProxy”,
“url”:“http://127.0.0.1:4433/wd/hub”,
“host”:“127.0.0.1”,
“port”:4433,
“maxSession”:1,
“register”:true,
“registerCycle”:5000,
“hubPort”:4433,
“hubHost”:“127.0.0.1”
}
}

Getting the below error in - Erron in Browser :

DefaultRemoteProxy unknown version,server response code : 500


Getting the below response code in browse:smile: :

When i am trying to run the mobile automation code its not launching the app ? Please let me know what is the
issue ?

PLEASE HELP ME

This issue solved by changing the configuration to port 4723 which is Appium’s default port .

“configuration”:{
“cleanUpCycle”:2000,
“timeout”:30000,
“proxy”:“org.openqa.grid.selenium.proxy.DefaultRemoteProxy”,
“url”:“http://localhost:4723/wd/hub”,
“host”:“localhost”,
"port”:4723,
“maxSession”:1,

@MuthuSelvan: Watch my video

Thanks for sharing your video , i saw this …really good …

1 Like

Kindly look my below and help for solving the issue .