Triggering a scheduled job from multiple hangfire servers

Hi Guys,
we are triggering a scheduled job in a configured interval and it is getting fired. This is working in a single hangfire server environment.

In some of our environment, we will be having more than one servers. So, at this scenario, all the servers will trigger that job at that particular interval. Can we restrict this job to be triggered from only one server?

string cronExpressionCleanupJob = "0 0 0/{0} ? * *"; 
RecurringJob.AddOrUpdate<CleanUpJobTriggerJob>(nameof(CleanUpJobTriggerJob),
    job => job.ExecuteJob(null, null), cronExpressionCleanupJob, TimeZoneInfo.Local);
var hangFireJobId = BackgroundJob.Enqueue<CleanUpJobTriggerJob>(x => x.ExecuteJob(null, null));

Any ideas?