We have a Windows 2012 R2 server running IIS and plan to move over to a Windows 2022 server with IIS. Now, our old server is running the Win-Acme utility to create Let's Encrypt certificates for known site bindings and our new server will run that util too. Works perfectly in both cases.
Now, our old server will be shut off and the new server will be assigned the IP address of the old server. Instead of moving/migrating all the current Let's Encrypt certificates from the old server to the new server, I was planning to just create a batch file on the new server creating all new certificates. That works great with the Win-Acme IIS plugin (I have tested the procedure with a new domain name). As far as I can see, it totals about 165 certificates (not 165 domain names but certificates). Will we run into rate limiting problems or other problems if I create all new certificates instead of migrating and then renewing them?
These are our main (and most important) domain names and the command lines in the batch file to issue new certificates (please note that these are unique web sites):
D:\letsencryptv227\wacs.exe --source iis --siteid 2 --host app.domain.nl --installation iis
D:\letsencryptv227\wacs.exe --source iis --siteid 3 --host go.domain.nl --installation iis
D:\letsencryptv227\wacs.exe --source iis --siteid 3 --host go1.domain.nl --installation iis
D:\letsencryptv227\wacs.exe --source iis --siteid 5 --host new.domain.nl --installation iis
D:\letsencryptv227\wacs.exe --source iis --siteid 6 --host xml.domain.nl --installation iis
D:\letsencryptv227\wacs.exe --source iis --siteid 7 --host dev.domain.nl --installation iis
D:\letsencryptv227\wacs.exe --source iis --siteid 8 --host domain.nl,www.domain.nl --installation iis
There are 150 lines like the one below (all unique domain names) for the same site (id 8):
D:\letsencryptv227\wacs.exe --source iis --siteid 8 --host customer1.nl,www.customer1.nl --installation iis
Will this work without problems? I really don't want to discover that the above is impossible when the old server is shut off and the new one needs to be running not too long after that.
Thanks!