This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.1' | |
services: | |
postgres: | |
image: postgres:12 | |
hostname: postgres | |
container_name: postgres | |
volumes: | |
- ./db:/var/lib/postgresql/data:rw | |
- ./initdb.d:/docker-entrypoint-initdb.d |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name=SplunkSource | |
kafka.topic=splunk-source | |
tasks.max=1 | |
connector.class=io.confluent.connect.SplunkHttpSourceConnector | |
splunk.collector.index.default=default-index | |
splunk.port=8889 | |
splunk.ssl.key.store.path=/etc/kafka/secrets/kafka.kafka1.keystore.jks | |
splunk.ssl.key.store.password=confluent | |
confluent.topic.bootstrap.servers=broker:29092 | |
confluent.topic.replication.factor=1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: '2' | |
services: | |
zookeeper: | |
image: confluentinc/cp-zookeeper:5.5.1 | |
hostname: zookeeper | |
container_name: zookeeper | |
ports: | |
- "2181:2181" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "ServiceNowSourceConnector", | |
"config": { | |
"connector.class": "io.confluent.connect.servicenow.ServiceNowSourceConnector", | |
"kafka.topic": "servicenow", | |
"servicenow.url": "https://devxxx.service-now.com/", | |
"tasks.max": "1", | |
"servicenow.table": "incident", | |
"servicenow.user": "xxx", | |
"servicenow.password": "xxxx", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: '2' | |
services: | |
zookeeper: | |
image: confluentinc/cp-zookeeper:5.5.1 | |
hostname: zookeeper | |
container_name: zookeeper | |
ports: | |
- "2181:2181" | |
environment: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name = sap | |
connector.class = com.sap.kafka.connect.source.hana.HANASourceConnector | |
tasks.max = 1 | |
connection.password = HXEHana1 | |
topics = test_topic_1 | |
connection.user = SYSTEM | |
connection.url = jdbc:sap://hana:39041/ | |
test_topic_1.table.name = "SYS"."DUMMY" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: '2' | |
services: | |
zookeeper: | |
image: confluentinc/cp-zookeeper:5.5.1 | |
hostname: zookeeper | |
container_name: zookeeper | |
ports: | |
- "2181:2181" | |
environment: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
########################### | |
####### LOAD CONFIG ####### | |
########################### | |
while [ $# -gt 0 ]; do | |
case $1 in | |
-c) | |
CONFIG_FILE_PATH="$2" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################## | |
## POSTGRESQL BACKUP CONFIG ## | |
############################## | |
# Optional system user to run backups as. If the user the script is running as doesn't match this | |
# the script terminates. Leave blank to skip check. | |
BACKUP_USER= | |
# Optional hostname to adhere to pg_hba policies. Will default to "localhost" if none specified. | |
HOSTNAME= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt -y install openjdk-11-jdk openjdk-11-jre | |
sudo apt -y install default-jdk | |
java -version | |
wget -O - https://dbeaver.io/debs/dbeaver.gpg.key | sudo apt-key add - | |
echo "deb https://dbeaver.io/debs/dbeaver-ce /" | sudo tee /etc/apt/sources.list.d/dbeaver.list | |
sudo apt update | |
sudo apt -y install dbeaver-ce |
NewerOlder