1

私のlogstash-2.3.2をpostgresql-9.5.4-1-windows-x64で構成できません。これが私のlog-config.confファイルです

    input {
    jdbc {
        # Postgres jdbc connection string to our database, mydb
        jdbc_connection_string => "jdbc:postgresql://localhost:5432/ambule"
        # The user we wish to execute our statement as
        jdbc_user => "postgres"
        # The path to our downloaded jdbc driver
        jdbc_driver_library => "C:\Users\Administrator\Downloads\postgresql-9.4-1201-jdbc41.jar"
        # The name of the driver class for Postgresql
        jdbc_driver_class => "org.postgresql.Driver"
        # our query
        statement => "SELECT * from table1"
    }
}
output {
    stdout { codec => json_lines }
}

エラーが 発生しています

4

1 に答える 1

2

例外自体jdbc_connection_string. あなたがそれをそのまま持っているとしたらどうなりますか:

jdbc_connection_string => "jdbc:postgresql://host:port/database?user=username"

-------------------------------------------------- --------------------------------------^ユーザーを追加してみてください

ドキュメントから見逃されたようです。それが役に立てば幸い!

于 2017-02-08T05:02:26.660 に答える