Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !
WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure. Join the pilot program today!
The BIND DNS server has already been deprecated and removed from Plesk for Windows.
If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
You'll have to make the changes to existing domains yourself. If you're dealing with a lot of domains you probably want to script this or change it in the psa database directly (make backups beforehand!).
Try this one (it takes the domain names from the database and update the zone files):
mysql -Ns -uadmin -p`cat /etc/psa/.psa.shadow` -D psa -e 'select name from domains' |
awk '{print "/usr/local/psa/admin/sbin/dnsmng update " $1 }' | sh
Yes, that one-liner regenerates all zonefiles according to the info in the psa database, but it doesn't re-apply the DNS template to all domains and I believe that is what flupke wants.
I know this thread is sorta old, but I just ran into this while prepping all my domains for a migration. Using the DB Web Admin, issue a command like:
UPDATE `dns_zone` SET `ttl` = '300', `ttl_unit` = '60' WHERE `id` >1;
This query will change the TTL on all domains to 5 mins (300 seconds). If you need to change other things, I would recommend altering just one domain, and then looking in the DB to see what values that domain has, and mirroring it in the query. You can do this from command-line too, but I was already in the DB Web Admin when I wrote the query.
After that, run the command that Monica listed above to regenerate all the zone files.