Hi, guys!
Is it possible to connect to ADABAS 6.3 using adabas-tcp? How to enable TCP connection to ADABAS?
I’m running ADABAS on Red Hat Linux
$ adashow 250
Database Id. : 250
Database Name : ADABAS-DESENV
Version : v63004 (default)
Config. file : /users/SAG/ada/db250/DB250.INI
Status : active
Running “netstat” command I found 2 listening ports for ADABAS “adanuc.bin”:
$ sudo netstat -ntp |grep adanuc
tcp 0 0 127.0.0.1:42800 127.0.0.1:9207 ESTABELECIDA4845/adanuc.bin
tcp 0 0 127.0.0.1:42813 127.0.0.1:9207 ESTABELECIDA5050/adanuc.bin
At the same time I have two “adanuc.bin” process running:
$ ps aux |grep adanuc
sag 4845 0.0 4.6 905700 759560 ? Ssl Jan30 0:37 /users/SAG/ada/v63004/bin/adanuc.bin DBID=100 +
sag 5050 0.3 4.6 1001280 759084 ? Ssl Jan30 438:47 /users/SAG/ada/v63004/bin/adanuc.bin DBID=250 +
I just wrote a lab program to start testing ADABAS Connection using Node.js and I’m anxious to know how to enable/connect to the database.
Thanks in advance.