Hello.
If I wanted to move the database and data files to a new server, I'd follow the "OMERO.server backup and restore" documentation at
https://www.openmicroscopy.org/site/sup ... store.htmlIn short, the process would be:
On the source:
* stop the OMERO server
* use pg_dump to take a 'dump' of the database
* rsync the binary data store to the destination server
* rsync the config file to the destination server
On the destination:
* use pg_restore to restore from the database dump
* 'install' OMERO in the usual fashion (same version as you previously had, you can upgrade later)
* restore your old OMERO config
* configure your new OMERO instance to use the binary data store from the previous server (if path is different)
* configure your new OMERO instance to use the database you've restored (again, if db name or db server is different)
* confirm all your Memory allocation, postgres connection pool size etc is as you'd like it
This is a process we do regularly and should be all you need. I may have misunderstood your question though.
Hope that's of some use?
Kenny