Run the same RecurringJob at the same time in multiples servers instances ???

A RecurringJob is enqueued by a random(!) Hangfire server queue whenever the cron is triggered.

You simply need to either create one RecurringJob for each Hangfire server, or create one RecurringJob that enqueues a BackgroundJob for each Hangfire server. I would probably suggest the latter, enqueueing a new BackgroundJob for each Hangfire server.