无法从另一个容器连接到ElasticSearch容器

时间:2019-08-23 14:40:55

标签: docker go elasticsearch

我正在尝试使用官方ElasticSearch API从Golang容器连接到go-elasticsearch容器。但是,当我尝试连接到容器时,出现此错误:

Error getting response: dial tcp 172.28.0.2:9200: connect: connection refused

我认为这是容器设置中的问题吗?

docker-compose.yaml

version: "3"
services:
  redis_server:
    image: "redis"
    ports:
      - "6379:6379"
  lambda_server:
    build: .
    ports:
      - "8080:50051"
    depends_on:
      - redis_server
      - elasticsearch
  elasticsearch:
    image: docker.elastic.co/elasticsearch/elasticsearch:7.3.1
    ports:
      - "9200:9200"
      - "9300:9300"      
    environment:
      - xpack.security.enabled=false
      - discovery.type=single-node
      - http.cors.enabled=true
      - http.cors.allow-origin=*

tlsConf := &http.Transport{
        TLSClientConfig: &tls.Config{
            Renegotiation: tls.RenegotiateOnceAsClient,
            Certificates:  []tls.Certificate{cer},
        },
    }
cfg := elasticsearch.Config{
        Addresses: []string{
            "http://elasticsearch:9200",
            "http://elasticsearch:9300",
        },
        Transport: tlsConf,
    }
    elasticClient, err = elasticsearch.NewClient(cfg)

    res, err := elasticClient.Info()
    if err != nil {
        log.Fatalf("Error getting response: %s", err)
    }

0 个答案:

没有答案