Logstash 6.5 to elasticsearch 6.5 connection using SSL Announcing the arrival of Valued...

Does classifying an integer as a discrete log require it be part of a multiplicative group?

Should I use a zero-interest credit card for a large one-time purchase?

How does the math work when buying airline miles?

Compare a given version number in the form major.minor.build.patch and see if one is less than the other

Why are both D and D# fitting into my E minor key?

Around usage results

Wu formula for manifolds with boundary

How to down pick a chord with skipped strings?

What is homebrew?

Fundamental Solution of the Pell Equation

First console to have temporary backward compatibility

Irreducible of finite Krull dimension implies quasi-compact?

How to tell that you are a giant?

What does "lightly crushed" mean for cardamon pods?

Why are there no cargo aircraft with "flying wing" design?

Why aren't air breathing engines used as small first stages

What is the meaning of the simile “quick as silk”?

How can I use the Python library networkx from Mathematica?

Is it fair for a professor to grade us on the possession of past papers?

Why are the trig functions versine, haversine, exsecant, etc, rarely used in modern mathematics?

Is there a kind of relay only consumes power when switching?

Withdrew £2800, but only £2000 shows as withdrawn on online banking; what are my obligations?

What does the "x" in "x86" represent?

How to answer "Have you ever been terminated?"



Logstash 6.5 to elasticsearch 6.5 connection using SSL



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Tools cannot connect to ElasticSearchElasticsearch not assigning shards to a (new) nodeLog Elasticsearch queries (and possibly provide analytics)Elastic and Logstash - Importing into multiple indexes based on dateElasticSearch: Find documents matching by a field between two indicesError when I try to copy mssql data to elasticsearch using logstashRunning startup on elasticsearch using eclipseelasticsearch “failed to resolve host”Elasticsearch delete_by_query version conflictElasticsearch | Max_Expansions and copy_to field in Multi_Match query





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















I'm trying to connect push data from MySQL to elasticsearch using logstash over SSL.
Elasticsearch and mysql resides on IBM cloud.
logstash config file set up is



input {
jdbc {
jdbc_validate_connection => true
jdbc_connection_string => "jdbc:mysql://<host>:<port>/<schema>?autoReconnect=true&useSSL=false"
jdbc_user => "test"
jdbc_password => "pwd"
jdbc_driver_library => "D:/mysql-connector-java-8.0.12/mysql-connector-java-8.0.12.jar"
jdbc_driver_class => "Java::com.mysql.cj.jdbc.Driver"
jdbc_paging_enabled => true
jdbc_page_size => 25000
type => "location"
statement => "SELECT ENTITY_NAME,
SECONDARY_ENTITY_NAME,
KEYWORD,
DESCRIPTION,
LATITUDE,
LONGITUDE,
MAP_URL,
SHORT_URL,
REF_URL,
LANGUAGES
FROM LOCATION"
}

}
filter{
mutate{
rename => {
"entity_name" => "ENTITY_NAME"
"secondary_entity_name" => "SECONDARY_ENTITY_NAME"
"keyword" => "KEYWORD"
"description" => "DESCRIPTION"
"map_url" =>"MAP_URL"
"short_url" => "SHORT_URL"
"ref_url" =>"REF_URL"
"languages"=>"LANGUAGES"

}



}
if [latitude] and [longitude]!="" {
mutate {
rename => {
"latitude" => "[LAT_LON][lat]"
"longitude" => "[LAT_LON][lon]"
}
}
}





}
output {
elasticsearch {
action=>"index"
hosts=>["https://<id>:<pwd>@<hostname>:<pot>/"]
index=>"test_location"
document_type=>"%{type}"
ssl=>true
ssl_certificate_verification=>true
cacert=>"D:/Data/Logstash-ES-6.5-Mapping/ca_logstash.cer"
}
stdout {}
}


I am getting error as




[ERROR][logstash.pipeline ] Error registering plugin
{:pipeline_id=>"main",
:plugin=>"#", :error=>"No
certificate data found", :thread=>"#"}




I know it is not able to get certificate data. tried giving exact path, that is also not working?



Is the configuration setting correct?










share|improve this question









New contributor




Latha Naganna is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.



























    0















    I'm trying to connect push data from MySQL to elasticsearch using logstash over SSL.
    Elasticsearch and mysql resides on IBM cloud.
    logstash config file set up is



    input {
    jdbc {
    jdbc_validate_connection => true
    jdbc_connection_string => "jdbc:mysql://<host>:<port>/<schema>?autoReconnect=true&useSSL=false"
    jdbc_user => "test"
    jdbc_password => "pwd"
    jdbc_driver_library => "D:/mysql-connector-java-8.0.12/mysql-connector-java-8.0.12.jar"
    jdbc_driver_class => "Java::com.mysql.cj.jdbc.Driver"
    jdbc_paging_enabled => true
    jdbc_page_size => 25000
    type => "location"
    statement => "SELECT ENTITY_NAME,
    SECONDARY_ENTITY_NAME,
    KEYWORD,
    DESCRIPTION,
    LATITUDE,
    LONGITUDE,
    MAP_URL,
    SHORT_URL,
    REF_URL,
    LANGUAGES
    FROM LOCATION"
    }

    }
    filter{
    mutate{
    rename => {
    "entity_name" => "ENTITY_NAME"
    "secondary_entity_name" => "SECONDARY_ENTITY_NAME"
    "keyword" => "KEYWORD"
    "description" => "DESCRIPTION"
    "map_url" =>"MAP_URL"
    "short_url" => "SHORT_URL"
    "ref_url" =>"REF_URL"
    "languages"=>"LANGUAGES"

    }



    }
    if [latitude] and [longitude]!="" {
    mutate {
    rename => {
    "latitude" => "[LAT_LON][lat]"
    "longitude" => "[LAT_LON][lon]"
    }
    }
    }





    }
    output {
    elasticsearch {
    action=>"index"
    hosts=>["https://<id>:<pwd>@<hostname>:<pot>/"]
    index=>"test_location"
    document_type=>"%{type}"
    ssl=>true
    ssl_certificate_verification=>true
    cacert=>"D:/Data/Logstash-ES-6.5-Mapping/ca_logstash.cer"
    }
    stdout {}
    }


    I am getting error as




    [ERROR][logstash.pipeline ] Error registering plugin
    {:pipeline_id=>"main",
    :plugin=>"#", :error=>"No
    certificate data found", :thread=>"#"}




    I know it is not able to get certificate data. tried giving exact path, that is also not working?



    Is the configuration setting correct?










    share|improve this question









    New contributor




    Latha Naganna is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.























      0












      0








      0








      I'm trying to connect push data from MySQL to elasticsearch using logstash over SSL.
      Elasticsearch and mysql resides on IBM cloud.
      logstash config file set up is



      input {
      jdbc {
      jdbc_validate_connection => true
      jdbc_connection_string => "jdbc:mysql://<host>:<port>/<schema>?autoReconnect=true&useSSL=false"
      jdbc_user => "test"
      jdbc_password => "pwd"
      jdbc_driver_library => "D:/mysql-connector-java-8.0.12/mysql-connector-java-8.0.12.jar"
      jdbc_driver_class => "Java::com.mysql.cj.jdbc.Driver"
      jdbc_paging_enabled => true
      jdbc_page_size => 25000
      type => "location"
      statement => "SELECT ENTITY_NAME,
      SECONDARY_ENTITY_NAME,
      KEYWORD,
      DESCRIPTION,
      LATITUDE,
      LONGITUDE,
      MAP_URL,
      SHORT_URL,
      REF_URL,
      LANGUAGES
      FROM LOCATION"
      }

      }
      filter{
      mutate{
      rename => {
      "entity_name" => "ENTITY_NAME"
      "secondary_entity_name" => "SECONDARY_ENTITY_NAME"
      "keyword" => "KEYWORD"
      "description" => "DESCRIPTION"
      "map_url" =>"MAP_URL"
      "short_url" => "SHORT_URL"
      "ref_url" =>"REF_URL"
      "languages"=>"LANGUAGES"

      }



      }
      if [latitude] and [longitude]!="" {
      mutate {
      rename => {
      "latitude" => "[LAT_LON][lat]"
      "longitude" => "[LAT_LON][lon]"
      }
      }
      }





      }
      output {
      elasticsearch {
      action=>"index"
      hosts=>["https://<id>:<pwd>@<hostname>:<pot>/"]
      index=>"test_location"
      document_type=>"%{type}"
      ssl=>true
      ssl_certificate_verification=>true
      cacert=>"D:/Data/Logstash-ES-6.5-Mapping/ca_logstash.cer"
      }
      stdout {}
      }


      I am getting error as




      [ERROR][logstash.pipeline ] Error registering plugin
      {:pipeline_id=>"main",
      :plugin=>"#", :error=>"No
      certificate data found", :thread=>"#"}




      I know it is not able to get certificate data. tried giving exact path, that is also not working?



      Is the configuration setting correct?










      share|improve this question









      New contributor




      Latha Naganna is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      I'm trying to connect push data from MySQL to elasticsearch using logstash over SSL.
      Elasticsearch and mysql resides on IBM cloud.
      logstash config file set up is



      input {
      jdbc {
      jdbc_validate_connection => true
      jdbc_connection_string => "jdbc:mysql://<host>:<port>/<schema>?autoReconnect=true&useSSL=false"
      jdbc_user => "test"
      jdbc_password => "pwd"
      jdbc_driver_library => "D:/mysql-connector-java-8.0.12/mysql-connector-java-8.0.12.jar"
      jdbc_driver_class => "Java::com.mysql.cj.jdbc.Driver"
      jdbc_paging_enabled => true
      jdbc_page_size => 25000
      type => "location"
      statement => "SELECT ENTITY_NAME,
      SECONDARY_ENTITY_NAME,
      KEYWORD,
      DESCRIPTION,
      LATITUDE,
      LONGITUDE,
      MAP_URL,
      SHORT_URL,
      REF_URL,
      LANGUAGES
      FROM LOCATION"
      }

      }
      filter{
      mutate{
      rename => {
      "entity_name" => "ENTITY_NAME"
      "secondary_entity_name" => "SECONDARY_ENTITY_NAME"
      "keyword" => "KEYWORD"
      "description" => "DESCRIPTION"
      "map_url" =>"MAP_URL"
      "short_url" => "SHORT_URL"
      "ref_url" =>"REF_URL"
      "languages"=>"LANGUAGES"

      }



      }
      if [latitude] and [longitude]!="" {
      mutate {
      rename => {
      "latitude" => "[LAT_LON][lat]"
      "longitude" => "[LAT_LON][lon]"
      }
      }
      }





      }
      output {
      elasticsearch {
      action=>"index"
      hosts=>["https://<id>:<pwd>@<hostname>:<pot>/"]
      index=>"test_location"
      document_type=>"%{type}"
      ssl=>true
      ssl_certificate_verification=>true
      cacert=>"D:/Data/Logstash-ES-6.5-Mapping/ca_logstash.cer"
      }
      stdout {}
      }


      I am getting error as




      [ERROR][logstash.pipeline ] Error registering plugin
      {:pipeline_id=>"main",
      :plugin=>"#", :error=>"No
      certificate data found", :thread=>"#"}




      I know it is not able to get certificate data. tried giving exact path, that is also not working?



      Is the configuration setting correct?







      elasticsearch






      share|improve this question









      New contributor




      Latha Naganna is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question









      New contributor




      Latha Naganna is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question








      edited 10 hours ago









      bummi

      1,50331422




      1,50331422






      New contributor




      Latha Naganna is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 14 hours ago









      Latha NagannaLatha Naganna

      1




      1




      New contributor




      Latha Naganna is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Latha Naganna is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Latha Naganna is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















          0






          active

          oldest

          votes












          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "3"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });






          Latha Naganna is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1426477%2flogstash-6-5-to-elasticsearch-6-5-connection-using-ssl%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          Latha Naganna is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          Latha Naganna is a new contributor. Be nice, and check out our Code of Conduct.













          Latha Naganna is a new contributor. Be nice, and check out our Code of Conduct.












          Latha Naganna is a new contributor. Be nice, and check out our Code of Conduct.
















          Thanks for contributing an answer to Super User!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1426477%2flogstash-6-5-to-elasticsearch-6-5-connection-using-ssl%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Cannot install PyQt5 The Next CEO of Stack OverflowCannot install tcpreplay 3.4.4cannot...

          Kapp-Putsch Acontecimentos | Outros artigos | Menu de navegação

          Why did early computer designers eschew integers? The Next CEO of Stack OverflowWhat register...