更改默认传输端口
编辑更改默认传输端口
编辑默认情况下,Elasticsearch GCE 插件假定您在默认端口 9300 上运行 Elasticsearch。但是,您可以使用 Google Compute Engine 元数据 es_port
指定 Elasticsearch 应使用的端口值。
创建实例时
编辑添加 --metadata es_port=9301
选项
# when creating first instance gcloud compute instances create myesnode1 \ --scopes=compute-rw,storage-full \ --metadata es_port=9301 # when creating an instance from an image gcloud compute instances create myesnode2 --image=elasticsearch-1-0-0-RC1 \ --zone europe-west1-a --machine-type f1-micro --scopes=compute-rw \ --metadata es_port=9301
在运行的实例上
编辑gcloud compute instances add-metadata myesnode1 \ --zone europe-west1-a \ --metadata es_port=9301