配置 CLI
配置命令行界面
您可以使用 dcos cluster 和 dcos config 命令组访问 DC/OS CLI 配置。
配置 HTTP 代理
如果使用代理服务器连接到互联网,您可以配置 CLI 以使用代理服务器。
先决条件
pip
版本 7.1.0 或更高版本。- 定义
http_proxy
和https_proxy
环境变量来使用pip
。
若要为 CLI 配置代理:
- 从 CLI 终端定义环境变量
http_proxy
和https_proxy
:
export http_proxy=’http://<user>:<pass>@<proxy_host>:<http_proxy_port>’
export http_proxy=’http://<user>:<pass>@<proxy_host>:<https_proxy_port>’
- 为您不想使用代理的域定义
no_proxy
:
export no_proxy=".mesos,.thisdcos.directory,.dcos.directory,.zk,127.0.0.1,localhost,foo.bar.com,.baz.com”