diff --git a/datacenter/ucp/2.0/guides/configuration/integrate-with-dtr.md b/datacenter/ucp/2.0/guides/configuration/integrate-with-dtr.md index 8f6cf6cfe9..f09ce4cbef 100644 --- a/datacenter/ucp/2.0/guides/configuration/integrate-with-dtr.md +++ b/datacenter/ucp/2.0/guides/configuration/integrate-with-dtr.md @@ -31,9 +31,11 @@ The configuration depends on your operating system. ```bash # Download the DTR CA certificate -$ curl -k https:///ca -o /usr/local/share/ca-certificates/.crt +$ sudo curl -k https:///ca -o /usr/local/share/ca-certificates/.crt + # Refresh the list of certificates to trust $ sudo update-ca-certificates + # Restart the Docker daemon $ sudo service docker restart ``` @@ -42,9 +44,11 @@ $ sudo service docker restart ```bash # Download the DTR CA certificate -$ curl -k https:///ca -o /etc/pki/ca-trust/source/anchors/.crt +$ sudo curl -k https:///ca -o /etc/pki/ca-trust/source/anchors/.crt + # Refresh the list of certificates to trust $ sudo update-ca-trust + # Restart the Docker daemon $ sudo /bin/systemctl restart docker.service ```