Magento 2 backend customer grid empty
This is a problem with the reindexing process. Solve it by running the following command in MySQL:
update magento.indexer_state set status='invalid' where status ='working'
Afterwards, run the indexer process in the console with the following command in your magento directory:
php bin/magento indexer:reindex
Your customers will now appear as expected.