There is a web application service called as Hangfire which call the API’s on every time interval(15 seconds) to update the status of loan orders. We moved the all published code to new web server when we shut down the old web server then Hangfire service is not working. We did many process to remove the old server dependency from hangfire but it seems that hangfire service database associated with old web server. Below steps we did to remove dependency.
• We directly update the new web server name in hangfire.server table with old web server.
• We created the new database and change the connected string in hangfire application
according it and run the service.
• We checked out all possible IIS configuration to find out the old server dependency.