After starting the cbupgrade process it appears to be stuck migrating events during the Solr portion.
cat /etc/environment | grep 'proxy'
Request to http://127.0.0.1:8080/solr/cbmodules/select failed with error < 400 cycle detected
curl "http://127.0.0.1:8080/solr/admin/cores?action=STATUS&wt=json&indexInfo=false&indent=true"
The above error is generated when the server is configured to use a proxy server. The call to 127.0.0.1/localhost is not processed correctly
Add the following to the proxy configuration files
export no_proxy=127.0.0.1,localhost
export no_proxy=127.0.0.1,localhost
curl "http://127.0.0.1:8080/solr/admin/cores?action=STATUS&wt=json&indexInfo=false&indent=true"