• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

How soon will changes for nameservers take affect?

R

Roger Nordseth

Guest
I discovered that my domains as i own was on internal IP so a ping on my namesevers came up with internal ip.
The domains i host is on external IP .

I have set SOA to update sooner then hours but no change yet
 
I had this issue and i had to use a sql query to change all the soa records, then a shell script to rebuild named , and then restart.

This will change the ttl to 5 minutes(300 seconds)

mysql -uadmin -p`cat /etc/psa/.psa.shadow` psa

> UPDATE `dns_zone` SET `ttl` = '300', `ttl_unit` = '60' WHERE `id` >1;quit;

With this script you rebuild the bind config files: mysql -Ns -uadmin -p`cat /etc/psa/.psa.shadow` -D psa -e 'select name from dns_zone' | awk '{print "/usr/local/psa/admin/sbin/dnsmng update " $1 }' | sh

http://www.linuxweblog.com/blogs/sandip/20091114/bulk-update-dns-ttl-all-plesk-domains
 
Back
Top