Dell VxRail: Node expansion fails with DNS error

Hata :

ESXi hostname xxxxxx cannot be resolved by the provided DNS server(s) x.x.x.x

 

Vxrail manager üzerinde DNS servisleriniz sunucularınız kayıtları hatalı ise update ya da benzeri bazı işlemlerde yukarıdaki şekilde hata alabilirsiniz. Düzenlemek için aşağıdaki adımları kullanabilirsiniz.

Vxrail 7 ve üzeri için ,

xxxxxxxx:/home/mystic # psql -U postgres vxrail
psql (10.17)
Type “help” for help.

vxrail=# select * from configuration.configuration where key=’system_dns’;
id | category |    key     |        value
—-+———-+————+———————-
79 | setting  | system_dns | 10.0.10.10,10.0.10.11
(1 row)

vxrail=# update configuration.configuration set value=’10.0.20.10,10.0.20.11′ where key=’system_dns’;
UPDATE 1
vxrail=# select * from configuration.configuration where key=’system_dns’;
id | category |    key     |        value
—-+———-+————+———————
79 | setting  | system_dns | 10.0.20.10,10.0.20.11
(1 row)

vxrail=#