• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • 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.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

dns changes

D

dgiff

Guest
I was wondering if I make changes directly to the dns files how do I get those changes to update in psa as well? Do I have to add them manually to the db too?
 
You can add them manually but if Plesk doesn't recognise them it will delete them when you'll try to edit via Plesk. If you see in Plesk records edited by you it wont delete them. IMO better way is to add them with command line: list of commands /usr/local/psa/bin/dns.sh --help
 
I have come up w/ this solution to add A records into the db...

#!/bin/sh

mysql -Ns -uadmin -p`cat /etc/psa/.psa.shadow` -D psa -e"INSERT INTO `psa`.`dns_recs` (`dns_zone_id`,`type`,`displayHost`,`host`,`displayVal`,`val`) VALUES((SELECT `id` FROM `dns_zone` WHERE `name` LIKE '$1'),'A','$2.$1','$2.$1','$3','$3');"

exit 0

Which is run like...

./mydns.sh example.com subname 127.0.0.1

But yes your right...

/usr/local/psa/bin/dns -a example.com -a subname -ip 127.0.0.1

... is a lot easier.
 
Back
Top