真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網站制作重慶分公司

安裝logstash-input-jdbc插件

安裝logstash-input-jdbc插件,實現(xiàn)數據的插入

1.安裝gem

yum install gem -y

安裝logstash-input-jdbc插件

創(chuàng)新互聯(lián)長期為1000+客戶提供的網站建設服務,團隊從業(yè)經驗10年,關注不同地域、不同群體,并針對不同對象提供差異化的產品和服務;打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網生態(tài)環(huán)境。為平陸企業(yè)提供專業(yè)的網站建設、成都做網站,平陸網站改版等技術服務。擁有10余年豐富建站經驗和眾多成功案例,為您定制開發(fā)。

2.替換ruby庫(兩種國內源+淘寶源)

2.1.1替換為國內源

gem sources --add https://gems.ruby-china.com/ --remove https://rubygems.org/
gem sources -l

安裝logstash-input-jdbc插件

2.1.2修改配置文件

cd /opt/inst/logstash722/
vi Gemfile
#修改Gemfile文件
#source https://rubygems.org/
httpsvi Gemfile.lockgems.ruby-china.com/
vi Gemfile.lock
#remote: https://rubygems.org/
https://gems.ruby-china.com/

安裝logstash-input-jdbc插件

安裝logstash-input-jdbc插件

2.2 同上替換ruby為淘寶源(如果上述替換國內源不成功,可以換此方法)

gem sources --add https://ruby.taobao.org/ --remove https://rubygems.org/
gem sources -l

安裝logstash-input-jdbc插件

由于修改ruby鏡像庫為淘寶庫并沒有成功,這里就需要修改Gemfile文件里面的數據源:

cd /opt/inst/logstash722/
vi Gemfile
#修改Gemfile文件
#source https://rubygems.org/
source "https://ruby.taobao.org"
#remote: https://rubygems.org/
remote: https://ruby.taobao.org

安裝logstash-input-jdbc插件

安裝logstash-input-jdbc插件

安裝logstash-input-jdbc插件

3.安裝logstash-input-jdbc

3.1 到logstash的bin目錄下運行下面的命令,查看可用的插件

cd bin
./logstash-plugin list --verbose

安裝logstash-input-jdbc插件

安裝logstash-input-jdbc插件

3.2 上述操作看到可以使用的logstash-input-jdbc版本是4.3.3,安裝JDBC

unzip logstash-input-jdbc-4.3.3.zip
mv logstash-input-jdbc-4.3.3 /opt/inst/log_jdbc433
cd log_jdbc433/

安裝logstash-input-jdbc插件

安裝logstash-input-jdbc插件

3.3 配置Gemfile文件

vi Gemfile
source 'https://gems.ruby-china.com/'

安裝logstash-input-jdbc插件

4.測試是否成功

4.1 提供數據

需要一個MySQL驅動包,sql文件,以及conf配置文件

安裝logstash-input-jdbc插件

安裝logstash-input-jdbc插件

安裝logstash-input-jdbc插件

input {

    jdbc {
      # mysql jdbc connection string to our backup databse
      jdbc_connection_string => "jdbc:mysql://169.254.211.100:3306/test"
      # the user we wish to excute our statement as
      jdbc_user => "root"
      jdbc_password => "root"
      # the path to our downloaded jdbc driver
      jdbc_driver_library => "/opt/inst/logstash722/sql/mysql-connector-java-5.1.40-bin.jar"
      # the name of the driver class for mysql
      jdbc_driver_class => "com.mysql.jdbc.Driver"
      jdbc_paging_enabled => "true"
      jdbc_page_size => "50000"
      statement_filepath => "/opt/inst/logstash722/sql/logs_20171206.sql"
      schedule => "*/1 * * * *"
      type => "jdbc"
    }
}

filter {
    json {
        source => "message"
        remove_field => ["message"]
    }
}

output {
    elasticsearch {
        hosts => "169.254.211.100:9200"
        index => "logs_20171206"
        document_id => "%{id}"
    }
    stdout {
        codec => json_lines
    }
}

4.2 實現(xiàn)logstash把文件寫進mysq數據庫l中

cd /opt/inst/logstash722/bin
./logstash -f /opt/logfiter/mysql.conf 

http://169.254.211.100:5601/app/kibana#/dashboard/1e4f4310-c638-11e9-9ea7-f9ef9537f0f4?_g=(refreshInterval%3A(display%3AOff%2Cpause%3A!f%2Cvalue%3A0)%2Ctime%3A(from%3Anow-1y%2Cmode%3Aquick%2Cto%3Anow))

安裝logstash-input-jdbc插件

1566580763148


分享文章:安裝logstash-input-jdbc插件
網頁鏈接:http://weahome.cn/article/goecps.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部