Multiple logons/connections for this session are not allowed. Closing connection from /XXXXX:11207 since session is already established from null #748
Replies: 4 comments
-
Which messages are exchanged before these log lines? I assume there is a heartbeat timeout? What was the last application message you received before this happened? In general it looks like your session somehow broke and the counterparty tries to reconnect. Next time this happens a thread dump would be helpful. |
Beta Was this translation helpful? Give feedback.
-
We use quickfixj with jdbc(mysql), we shutdown the DB during night but not the app. |
Beta Was this translation helpful? Give feedback.
-
For JDBC are you using Proxool (bundled with QFJ up to 2.3.1) or do you pass the data source to Spring Boot or the like? I could imagine that it could have to do with the DB restart. What do you expect to happen when the data base is your session store and the DB is down? |
Beta Was this translation helpful? Give feedback.
-
Hello, I did try to reproduce the bug in dev mode by shuting down the db and restarting, trying to connect when db is off etc... But I can't get the same error. |
Beta Was this translation helpful? Give feedback.
-
After a couple of days the fix engine stop working with the following message:
Multiple logons/connections for this session are not allowed. Closing connection from /XXXXX:11207 since session is already established from null
Then every 30sec(during the heartbeat I guess) it log the same error but with different port exemple :
Multiple logons/connections for this session are not allowed. Closing connection from /XXXXX:11208 since session is already established from null
Multiple logons/connections for this session are not allowed. Closing connection from /XXXXX:11209 since session is already established from null
Multiple logons/connections for this session are not allowed. Closing connection from /XXXXX:11210 since session is already established from null
When restarting the fix engine the client is able to connect again
Beta Was this translation helpful? Give feedback.
All reactions