Skip to main content
Version: 3.14.x.x LTS

CACH

The next table lists all error codes related to the session cache.

MajorMinorMessageDetails
CACH0001Neither the master nor the slave do support session reaping. Reaping will not work. Be aware that this will fill the databaseContact support.
0002invoking session-listener failedContact support.
0003illegal value for 'isNew'. Only 'true' or 'false' are allowedContact support.
0004caught ExceptionSee the log for further details. Contact support.
0005no entry found or createdContact support.
0006missing id in query in CacheRestServer_1_0::getSessionContact support.
0007missing id in query in CacheRestServer_1_0::destroySessionContact support.
0008missing id in query in CacheRestServer_1_0::addKeyContact support.
0009missing key in query in CacheRestServer_1_0::addKeyContact support.
0010missing key in query in CacheRestServer_1_0::removeKeyContact support.
0011missing interval in query in CacheRestServer_1_0::setMaxInactiveIntervalContact support.
0012could not parse in CacheRestServer_1_0::setMaxInactiveIntervalContact support.
0013missing lifetime in query in CacheRestServer_1_0::setMaxLifetimeContact support.
0014could not parse in CacheRestServer_1_0::setMaxLifetimeContact support.
0015missing id in query in CacheRestServer_1_0::updateSessionContact support.
0016invalid request (no attribute given) in CacheRestServer_1_0::updateSessionContact support.
0017an attribute can't be set in CacheRestServer_1_0::updateSessionContact support.
0018sessionId is missing in CacheRestServer_1_0::sendSessionContact support.
0019unsupported Content-TypeContact support.
0020unexpected statuscode, the session could not be created in CacheRestClient_1_0::createContact support.
0021unexpected statuscode, the session could not be gotContact support.
0022unexpected statuscode, the session could not be created in CacheRestClient_1_0::getOrCreateContact support.
0023unexpected statuscode, the session could not be destroyedContact support.
0024unexpected statuscode, the key could not be addedContact support.
0025unexpected statuscode, the key could not be removedContact support.
0026the attribute could not be setContact support.
0027the attribute could not be removedContact support.
0028unexpected statuscode, the session could not be timestampedContact support.
0029unexpected statuscode, the maximal inactive timeout could not be setContact support.
0030unexpected statuscode, the maximal lifetime could not be setContact support.
0031no entry could be foundThis may occur if the entry has been expired or timed out, or if another request performed a logout on the same entry at the same time.
0032the entry has already the keyThis may occur if another request has set the same key at the same time, which could happen in case of a misconfigured, custom-based SessionManagementFilter.
0033can't remove the unique idContact support.
0034the default value is missing in the Configuration-tableCheck that all defaults are specified in the configuration table in your MariaDB node. The table is usually called "conf".
0035for session-stickiness a value is missing in the Configuration-tableCheck that all needed values for session stickiness are specified in the configuration table in your MySQL node. The table is usually called "conf".
0036for session-stickiness a value in the Configuration-table is invalidCheck that all needed values for session stickiness are specified correctly in the configuration table in your MySQL node. The table is usually called "conf".
0037can't get entry because of some sql-problemsCheck the log file (navajo.log, mysql-log) for more information. The database seems to have a problem.
0038can't create or get new entry because of some sql-problemsCheck the log file (navajo.log, mysql-log) for more information. The database seems to have a problem.
0039could not store mapping into database (a different mapping exist)Contact support.
0040could not store mapping into databaseContact support.
0041could not remove alternate keyCheck the log file (navajo.log, mysql-log) for more information. The database seems to have a problem.
0042The attribute name might not fit into the DB, because it's too longIncrease the size in the MySQL table. For example: alter table attribute modify NAME varchar(300) NOT NULL;
0043The attribute value might not fit into the DB, because it's too longIncrease the size in the MySQL table and/or the parameter MaxAttributeSize of the MySQLSessionStoreServlet.

For example:

alter table attribute modify VALUE MEDIUMBLOB;

and in the MySQLSessionStoreServlet:

<init-param>
<param-name>MaxAttributeSize</param-name>
<param-value>120000</param-value>
</init-param>
MajorMinorMessageDetails
0044could not set attributeCheck the log file (navajo.log, mysql-log) for more information. The database seems to have a problem.
0045could not remove attributeCheck the log file (navajo.log, mysql-log) for more information. The database seems to have a problem.
0046could not delete attributeCheck the log file (navajo.log, mysql-log) for more information. The database seems to have a problem.
0047could not update access timeCheck the log file (navajo.log, mysql-log) for more information. The database seems to have a problem.
0048could not update inactive timeoutCheck the log file (navajo.log, mysql-log) for more information. The database seems to have a problem.
0049could not update max lifetimeCheck the log file (navajo.log, mysql-log) for more information. The database seems to have a problem.
0050could not remove all zombie-entriesCheck the log file (navajo.log, mysql-log) for more information. The database seems to have a problem.
0051could not mark all timedout entriesCheck the log file (navajo.log, mysql-log) for more information. The database seems to have a problem.
0052could not delete sessions with a given owner_idCheck the log file (navajo.log, mysql-log) for more information. The database seems to have a problem.
0053could not store mappingCheck the log file (navajo.log, mysql-log) for more information. The database seems to have a problem.
0054could not store session into databaseCheck the log file (navajo.log, mysql-log) for more information. The database seems to have a problem.
0055could not store session into database. Affected not only 1 row...Contact support.
0056could not store mapping into databaseCheck the log file (navajo.log, mysql-log) for more information. The database seems to have a problem.
0057could not store attribute into databaseCheck the log file (navajo.log, mysql-log) for more information. The database seems to have a problem.
0058could not delete attributeCheck the log file (navajo.log, mysql-log) for more information. The database seems to have a problem.
0059could not delete sessionCheck the log file (navajo.log, mysql-log) for more information. The database seems to have a problem.
0060could not delete key-id-mapCheck the log file (navajo.log, mysql-log) for more information. The database seems to have a problem.
0061could not delete entriesCheck the log file (navajo.log, mysql-log) for more information. The database seems to have a problem.
0062The reaper has been reaping for at least a certain amount of secondsThe local session store seems to have performance problem. This could happen under heavy load or if thousand of sessions expire at the same time. To avoid this error, increase the value of the parameter ReaperTimeOut of the LocalSessionStoreServlet.
0063The reaper has been reaping for at least a certain amount of seconds. Check the MySql-databaseThe MariaDB node seems to have some performance problems. This could happen under heavy load or if thousand of sessions expire at the same time. Check in the logs of the MariaDB if something is wrong. To avoid this error, you can increase the value of the parameter ReaperTimeOut of the MySQLSessionStoreServlet.
0064unexpected statuscode, the session could not be createdSee the navajo.log log file for more information.