don't use sudo because when running in the SimDem Docker contianer there is no sudo

This commit is contained in:
Ross Gardler 2017-06-02 05:33:00 +00:00
Родитель af33646699
Коммит 2db04cb0b1
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -28,7 +28,7 @@ In order to manage this instance of ACS we will need the DC/OS cli,
fortunately the Azure CLI makes it easy to install it.
```
sudo az acs dcos install-cli
az acs dcos install-cli
```
## Connect to the cluster
@ -36,7 +36,7 @@ sudo az acs dcos install-cli
To connect to the DC/OS masters in ACS we need to open an SSH tunnel:
```
sudo ssh -fNL 80:localhost:80 -p 2200 azureuser@acs-dcos-spark-dnsmgmt.eastus.cloudapp.azure.com -i ~/.ssh/id_rsa
ssh -fNL 80:localhost:80 -p 2200 azureuser@acs-dcos-spark-dnsmgmt.eastus.cloudapp.azure.com -i ~/.ssh/id_rsa
```
Now we tell the DC/OS CLI to use this tunnel to communicate with the cluster.
@ -61,4 +61,4 @@ Next, we can deploy Zeppelin.
```
dcos install zeppelin
```
```