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
| #!/usr/bin/expect -f | |
| set timeout 3 | |
| #log_user 1 | |
| spawn ./test | |
| expect "Enter command - start, stop or quit" | |
| send "start\r" | |
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 systemctl daemon-reload | |
| sudo systemctl start jenkins | |
| sudo systemctl status jenkins | |
| binary로 다운로드시 daemon으로 구성해서 자동 관리 |
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 date --set "$(ssh 계정@127.0.0.1 'date -u')"` |
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 | |
| if [ -z "$1" ]; then | |
| echo "Error: labal app name is not specified." | |
| exit 1 | |
| fi | |
| if [ -z "$2" ]; then | |
| echo "Error : zone is not specified." |
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.8' | |
| services: | |
| prometheus: | |
| image: prom/prometheus:v2.40.7 | |
| command: | |
| - --web.enable-remote-write-receiver | |
| - --enable-feature=native-histograms | |
| - --config.file=/etc/prometheus/prometheus.yml | |
| ports: |
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
| address: tcp://clickhouse:9000 |
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" | |
| services: | |
| clickhouse: | |
| image: yandex/clickhouse-server:21 | |
| ports: | |
| - "8123:8123" | |
| - "9000:9000" | |
| - "9009:9009" | |
| - "9363:9363" |
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
| receivers: | |
| otlp: | |
| protocols: | |
| grpc: | |
| exporters: | |
| logging: | |
| zipkin: | |
| endpoint: "http://zipkin-all-in-one:9411/api/v2/spans" |
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" | |
| services: | |
| tempo: | |
| image: grafana/tempo:latest | |
| command: [ "-config.file=/etc/tempo.yaml" ] | |
| volumes: | |
| - ./tempo-s3.yaml:/etc/tempo.yaml | |
| - ./tempo-data:/tmp/tempo | |
| ports: |