Can't import database dump file from version 5.13 to 5.24

Hi,
Fellow developers.
I was trying to import a dump database file of neo4j database , version 5.13 to 5.24 . I was trying to do that in my locally installed neo4j instance (which is neo4j 5.24). While doing that, I am getting this error:

Failed to create a DB[panama-papers] in DBMS[database-604f7044-e6f4-47dc-be6f-d8814044d8ba]. (Error: Unable to run a database write query. DBMS query error: Could not perform discovery. No routing servers available. Known routing table: RoutingTable[database=system, expirationTime=0, currentTime=1735586001786, routers=, readers=, writers=] )

I have no iead how to solve this error. appreciate your help regarding this matter.

thanks

I do my upgrades like this:

From the Neo4J browser:

CALL apoc.export.cypher.all("database.cypher", {format: "cypher-shell"});

From the shell:

cypher-shell -u neo4j -p password -f import/database.cypher

(I use docker and i place the file in the import folder), but that's just me.