I am working on determining what migrating our existing app to axon server would look like. Right now I am trying to migrate events from mongodb to axon server using the migration utility but I am not having any success. I noticed there is a default profile for migrating from jpa (migrate-from-jpa), so I tried running it using the profile name migrate-from-mongo, but no luck.
Right now my applicaiton.properties file contains…
axoniq.axonserver.servers=localhost
axoniq.datasource.eventstore.url=mongodb://localhost:27017/sample-db
axoniq.datasource.eventstore.username=admin
axoniq.datasource.eventstore.password=admin
And I am running the jar using the basic command...
java -jar axonserver-migration-4.0-exec.jar
Thanks,
Ben