Connect to emulator to remote machine

Hey…
I am running a test from a Jenkins build and trying to activate emulator from another machine (192.168.56.102).
I have emulator running on 192.168.56.102:5555.
I am trying to activate appium for ip 192.168.56.102 and port 5555

from Appium client UI and get this error:

Starting Node Server

warn: Appium support for versions of node < 0.12 has been deprecated and will be removed in a future version. Please upgrade!
error: Couldn’t start Appium REST http interface listener. Requested address is not available.

Node Server Process Ended

Then when running the test from another machine I am connecting to :

WebDriver = new AndroidDriver(new URL(“http://192.168.56.102:5555/wd/hub”),capabilities).

And get :

Going to execute start appium server: cmd /c C://appium//Appium//node.exe C://appium//Appium//node_modules\appium\bin\appium.js --address 192.168.56.102 --port 5555
e[33mwarne[39m: Appium support for versions of node < 0.12 has been deprecated and will be removed in a future version. Please upgrade!
e[31merrore[39m: Couldn’t start Appium REST http interface listener. Requested address is not available.
2015-11-18 15:41:02,089 INFO [main] (Drivers.java:329) - Trying to set ANDROID driver
org.openqa.selenium.remote.UnreachableBrowserException: Could not start a new session. Possible causes are invalid address of the remote server or browser start-up failure.
Build info: version: ‘2.42.2’, revision: ‘6a6995d31c7c56c340d6f45a76976d43506cd6cc’, time: ‘2014-06-03 10:52:47’
System info: host: ‘QTVR-AII015’, ip: ‘192.168.23.43’, os.name: ‘Windows 7’, os.arch: ‘amd64’, os.version: ‘6.1’, java.version: ‘1.7.0_79’
Driver info: driver.version: AndroidDriver
at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:593)
at io.appium.java_client.AppiumDriver.execute(AppiumDriver.java:180)
at org.openqa.selenium.remote.RemoteWebDriver.startSession(RemoteWebDriver.java:240)
at org.openqa.selenium.remote.RemoteWebDriver.(RemoteWebDriver.java:126)
at org.openqa.selenium.remote.RemoteWebDriver.(RemoteWebDriver.java:153)
at io.appium.java_client.AppiumDriver.(AppiumDriver.java:109)
at io.appium.java_client.android.AndroidDriver.(AndroidDriver.java:39)
at com.ui.service.drivers.Drivers$Appium.createAndroidDriver(Drivers.java:362)
at com.ui.service.drivers.Drivers$Appium.setDriver(Drivers.java:338)
at com.ui.service.drivers.Drivers.setDriver(Drivers.java:52)
at appium.messaging.basic_concurrent.VisitorThread.initAppiumDriver(VisitorThread.java:67)
at appium.messaging.basic_concurrent.VisitorThread.init(VisitorThread.java:57)
at appium.messaging.basic_concurrent.VisitorThread.(VisitorThread.java:47)
at appium.messaging.basic_concurrent.ConcurrentBasicMessagingSanityTest.main(ConcurrentBasicMessagingSanityTest.java:62)

I upgraded to 1.4.13 but it didn’t help.