명령어(5)
-
디버깅에 유용한 명령어
# yml 파일 생성vi {yml파일}# yml 파일 실행kubectl apply -f {yml파일}# 실행결과 확인kubectl get pods -Akubectl get pods -n {namespace}# pod 재기동kubectl delete pod/{pod} -n {namespace}# 로그 보기kubectl logs -f {pod} -n {namespace}kubectl logs -f service/{service} -n {namespace}kubectl logs -f ingress/{ingress} -n {namespace}kubectl logs -f ingress/{ingress} -n {namespace} -c {container}# 이벤트 확인kubectl get event -Akubec..
2024.05.05 -
PostgreSQL 명령
비밀번호 변경https://brunch.co.kr/@hjinu/3 postgres 유저 비밀번호 변경postgres 설치 후 sudo su - postgres 로 유저 변경 후, psql 명령어를 통해 postgres 콘솔에 진입 alter user postgres with password '1234'; 위와 같은 명령어로 비밀번호를 변경한다.brunch.co.kr# pod 구동시에 설정한 비밀번호는 노출이 되기 때문에 명령어로 비밀번호를 변경함# postgresql 데이터를 별도로 보관하기 때문에 비밀번호 변경한 내용이 pod를 재기동해도 작동함alter user postgres with password '{비밀번호}';버전 정보 확인https://hianna.tistory.com/682 [postgr..
2024.05.04 -
openssl 명령어
인증서 내용 확인 # 인증서(crt) 확인 openssl x509 -in {인증서} -text -noout
2023.05.27 -
minikube 명령어
config# config 확인kubectl config view# config 파일 위치 지정kubectl config view --kubeconfig={파일}kubectl get pods -A --kubeconfig={파일}cluster 설정 확인kubectl cluster-infocluster 삭제minikube deleteip 확인minikube ipterminating중인 pod 강제 삭제kubectl delete pod {pod명} --grace-period=0 --force'employee' user로 명령 실행하기kubectl -n office get pods --as employeenode 접속minikube sshminikube 시작할때, 상세 로그 보기 minikube start --..
2023.03.18 -
InfluxDB 명령어
https://docs.influxdata.com/influxdb/v2.1/ InfluxDB OSS 2.1 Documentation docs.influxdata.com 접속 docker exec -it 컨테이너 bash 데이터 삭제 influx delete --token 토큰 --org 조직 --bucket 버킷 --start '1970-01-01T00:00:00Z' --stop '2022-01-01T00:00:00Z' 서로 다른 measurement의 field와 tag 동시 조회하기 from(bucket: "nbminer") |> range(start: v.timeRangeStart, stop: v.timeRangeStop) |> filter(fn: (r) => r["_measurement"] == ..
2021.12.26