Manual Installation
Download the connector ZIP file. If you're running Kafka version 2.5 or lower, use the 2.12 archive otherwise, use the 2.13 one.
Extract the ZIP file contents and copy the contents to the desired location. For example, you can create a directory named /share/Kafka/plugins and copy the connector plugin contents.
Add this to the plugin path in your Connect worker properties file. Kafka Connect finds the plugins using its plugin path. A plugin path is a comma-separated list of directories defined in the Kafka Connect worker's configuration. This might already be set up, so there is nothing to do. For example:
plugin.path=/usr/local/share/kafka/plugins
Start the Kafka Connect workers with that configuration. Connect will discover all connectors defined within those plugins.
Repeat these steps for each machine where Connect is running. Each connector must be available to each worker.