Domain Expired, How to retrieve WordPress Posts?

Hello, my domain has expired and I fail to access to the data in order to retrieve my old posts, and migrate them into my new WordPress site.

I have tried commands like docker exec -i ee-global-db but it doesn’t recognize the container.

I need some suggestions on how to approach retrieving the data.

Thanks!

In case the server is still running you can use WP-CLI to create a DB dump of WordPress site.

Commands will be:

ee shell example.com
wp db export

Another way can be doing a host entry on your system.

1 Like

I ended up using docker exec -it $container mysqldump /credentials/ wp_content > db.sql

I’ll now try importing the way you described, With ee she’ll and
wp db import.

Thanks