전체 글 7

[prometheus 자체 구축-1] 필요 구성 및 kube-prometheusd와 차이

오케이 🙆 Rocky, 정리해드릴게요.Helm 차트 없이도 Prometheus + Alertmanager + Node Exporter + ServiceMonitor 기능까지 구축은 가능합니다.다만 핵심은 ServiceMonitor/PodMonitor를 인식하려면 관련 CRD를 먼저 설치해야 한다는 점이에요.1️⃣ 필요한 구성 요소(A) 공통Namespace (monitoring)RBAC 리소스 (ServiceAccount, ClusterRole, ClusterRoleBinding)(B) PrometheusCRDservicemonitors.monitoring.coreos.compodmonitors.monitoring.coreos.comprometheuses.monitoring.coreos.comprome..

카테고리 없음 2025.08.29

Mac 로컬에서 airflow 종료하기

Apache Airflow를 실행하면 여러 개의 Python 프로세스가 실행되는데, 종료하는 방법을 모르고 그대로 두면 프로세스가 계속 남아 있을 수 있습니다.✅ Airflow 종료하는 방법1️⃣ 실행 중인 Airflow 프로세스 확인터미널에서 다음 명령어를 실행하여 현재 실행 중인 Airflow 관련 프로세스를 확인하세요.bash복사편집ps aux | grep airflow 출력 예시:sql복사편집user 12345 0.0 1.2 500000 40000 ?? Ss 10:00AM 0:05 airflow webserver --port 8080 user 12346 0.0 1.0 480000 35000 ?? Ss 10:00AM 0:02 airflow scheduler user 12347 0.0 0.8 4500..

Mac 로컬 환경에서 airflow 설치방법

환경 : mac M31️⃣ Homebrew 설치 (필수)Homebrew는 macOS에서 패키지를 쉽게 설치할 수 있도록 해주는 필수 도구입니다.📌 Homebrew 설치터미널을 열고 다음 명령어 실행:/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"  설치 완료 후, 터미널을 다시 열고 설치 확인:brew -v출력 예시:Homebrew 4.x.x  * 트러블 슈팅 : zsh: command not found: brew1. Homebrew가 설치되어 있는지 확인먼저 Homebrew가 설치되어 있는지 확인합니다. ls -l /opt/homebrew/bin/brew 출력 결과 확인✅ 설치됨..