To allow the primary cluster add workflow to proceed, please follow the steps below.
- Stop SDDC Manager UI service
systemctl stop sddc-manager-ui-app
- Update UI server connection timeout value
vi /opt/vmware/vcf/sddc-manager-ui-app/server/src/servers/sddcManagerServer/www.js
- Search for ’server.listen’ and then add the following line below: server.timeout = 600000;
- Save the file by typing wq!.
- Start SDDC Manager UI service.
systemctl start sddc-manager-ui-app
- Check the status of SDDC Manager UI service and make sure service is running
systemctl status sddc-manager-ui-app
- Take backup of nginx configuration file
cp /etc/nginx/nginx.conf /etc/nginx/nginx.conf.bkup
- Edit /etc/nginx/nginx.conf file, append following lines
- Please add below configurations before line "domainmanager APIs, accessed without /domainmanager"
location /domainmanager/vxrail {
proxy_read_timeout 600;
proxy_connect_timeout 600;
proxy_send_timeout 600;
# UI server handles auth via PSC/SSO
proxy_pass http://127.0.0.1:7200;
}
- Please add below configurations before line "location /ui/ {"
location /ui/api/domainmanager/vxrail {
proxy_read_timeout 600;
proxy_connect_timeout 600;
proxy_send_timeout 600;
# UI server handles auth via PSC/SSO
proxy_pass http://127.0.0.1:7500;
}
- Restart nginx service
systemctl restart nginx
- Check the status of nginx service and make sure service is running
systemctl status nginx
- Continue with primary cluster add operations