JDE.INI [JDENET] on AS/400 - maxNetConnections

imported_rklopfer

imported_rklopfer

Active Member
I am looking for some assistance in a problem I am seeing, primarily "listener" errors...so I am thinking perhaps the setting in the AS/400 JDE.INI [JDENET] on maxNetConenctions may be undersized. The error I am getting in JAS.LOG is "Cannot listen on the port: 6010". This seems to be happening to ALL our JAS servers...which kinda makes me think it is a problem on the enterprise server (AS/400).

Any input on the macNetConnections setting would be appreciated...or any other suggestions.

Thanks!
 
If you do netstat on the Jas server, you will notice some other job (maybe another instance of Jas server) is listening on port 6109. You can't have two programs running on the same port. Either change your port, or in your jas.ini file, add the following:

under [JDENET] stanza add

disableListener = TRUE

but this might cause you more headaches...
 
Change your JAS.INI file to look something like this:

[JDENET]
# Enterprise Server JDENET port
serviceNameConnect=6012

# JAS Server JDENET Listening port
serviceNameListen=6082

It will all then go away.

Paul
 
Back
Top Bottom