When a windows machine pings to linux server to run application specific python commands, it does connect. The firewall is also disabled on linux server. mongodb is database server here. database is on same server. Not sure if this ascertains smooth relation between deadline api and database. Any views ?
from DeadlineConnect import DeadlineCon as con
data = con("xx.xx.xx.xx", 8082) # this give a data object
print data.Groups.GetGroupNames() # but this gives error, httplib.BadStatusLine: No status line received - the server closed the connection
The system throws urllib2.URLError [Error 10061] - No connection could be made because the target machine actively refused it
Tried,
data = con("xx.xx.xx.xx", 2049) # this give a data object
print data.Groups.GetGroupNames() # but this gives error, httplib.BadStatusLine: No status line received - the server closed the connection
Is it an issue with connection between deadline server and db server. They are both on same machine. By some sense this should not be causing this issue. But is that a certainty. Not sure. Please share your views ~