如何在马拉松中更改端口
How to change port in marathon
我使用以下命令更改端口
sudo ./bin/start --master local --zk zk://10.20.8.106:2181/marathon --http_port=7070
但它不起作用,我得到
[scallop] Error: Unknown option 'http_port=7070'.
因为我正在通过 putty 访问 ubuntu
是否有必要在命令 .
中提供 ubuntu 机器的 IP 地址而不是 "local"
我认为你应该像这样删除 =
字符:
sudo ./bin/start --master local --zk zk://10.20.8.106:2181/marathon --http_port 7070
看看
关于所有可用选项。关于 --master
标志:
--master (Required): The URL of the Mesos master. The format is a comma-delimited list of of hosts like zk://host1:port,host2:port/mesos. If using ZooKeeper, pay particular attention to the leading zk:// and trailing /mesos! If not using ZooKeeper, standard URLs like http://localhost are also acceptable.
我使用以下命令更改端口
sudo ./bin/start --master local --zk zk://10.20.8.106:2181/marathon --http_port=7070
但它不起作用,我得到
[scallop] Error: Unknown option 'http_port=7070'.
因为我正在通过 putty 访问 ubuntu 是否有必要在命令 .
中提供 ubuntu 机器的 IP 地址而不是 "local"我认为你应该像这样删除 =
字符:
sudo ./bin/start --master local --zk zk://10.20.8.106:2181/marathon --http_port 7070
看看
关于所有可用选项。关于 --master
标志:
--master (Required): The URL of the Mesos master. The format is a comma-delimited list of of hosts like zk://host1:port,host2:port/mesos. If using ZooKeeper, pay particular attention to the leading zk:// and trailing /mesos! If not using ZooKeeper, standard URLs like http://localhost are also acceptable.