Hi there! Greetings friends.
(app server 11.5 on windows 7, 32 bits 4 gb ram, proof of concept for appserver adoption)
I have this problem... the following succeeds instantly to connect:
lg = hs:connect ("-H 10.101.102.208 -DirectConnect -S 3090 -sessionModel Session-free ").
but when omitted the -DirectConnect parameter, the instruction waits some minute or so to fail with the message:
Name Server at Host 10.101.102.208 Port 3090 is not responsive. (8239)
Checkiing on knowledgebase , I disabled firewall, and stuff, but it won't connect.
The log of asbroker1.asbroker.log shows the connection, but not the missed connection.
Is there some kind of debugging info that allows me to catch where the error is?
When you use -DirectConnect the -S value is the port of the AppServer you are directly connecting to.
If you want to use the NameServer to connect to the appserver you need to use this syntax:
-AppService appservice -H nameserverhost -S nameserverport
Ø Name Server at Host 10.101.102.208 Port 3090 is not responsive. (8239)
When you don’t specify the –DirectConnect (read: direct connect to AppServer broker), the connection goes via nameserver.
You nameserver is not running on port 3090 as the message says.
Hi there! Greetings friends.
(app server 11.5 on windows 7, 32 bits 4 gb ram, proof of concept for appserver adoption)
I have this problem... the following succeeds instantly to connect:
lg = hs:connect ("-H 10.101.102.208 -DirectConnect -S 3090 -sessionModel Session-free ").
but when omitted the -DirectConnect parameter, the instruction waits some minute or so to fail with the message:
Name Server at Host 10.101.102.208 Port 3090 is not responsive. (8239)
Checkiing on knowledgebase , I disabled firewall, and stuff, but it won't connect.
The log of asbroker1.asbroker.log shows the connection, but not the missed connection.
Is there some kind of debugging info that allows me to catch where the error is?
Flag this post as spam/abuse.
Thanks all for the info.
but.....
these are last events on log (apart from numerous 8209 message lines )
the lines like 323 or 329 appears hundreds of times.
line 323, ip 66 is the machine I use to test, is where connection was achieved...
this is the beginning of log file, as I restarted computer...
The following instruction gives a connection:
lg = hs:connect ("-H 10.101.102.208 -S 5162 -AppService schAS1 -sessionModel Session-free").
As instructed by Libor (thanks btw)
So then I'm confused: Must I route port 3090 udp/tcp on firewall (pf sense) or 5162 udp/tcp, or both or some combination of udp - tcp ? Is the 5162 port changing on some future event (restart/reboot)?
I guess one port is where the service will be available? and other for the nameserver? If so, there is a range of ports to be used? all clients come through 3090? or 3090 is just the first of a pool ?
Thanks all for the info.
but.....
these are last events on log (apart from numerous 8209 message lines )
the lines like 323 or 329 appears hundreds of times.
line 323, ip 66 is the machine I use to test, is where connection was achieved...
this is the beginning of log file, as I restarted computer...
Thanks Libor!!!
I think I should go NS, as directed by docs. that I read that advised against DirectConnect.
And the article you pointed was the missing info!!!
Thanks!!!