Prometheus: alertmanager 오류 대처법
·
🖥️Monitoring/Prometheus
level=warn component=cluster err="couldn't deduce an advertise address: no private IP found, explicit advertise addr not provided"ts=2024-06-05T03:36:10.082Z caller=main.go:278 level=error msg="unable to initialize gossip mesh" err="create memberlist: Failed to get final advertise address: No private IP address found, and explicit IP not provided"해당 오류는 클러스터 모드에서 사용할 광고 주소(advertise address)를 설정..
MongoDB: TooManyLogicalSessions 에러
·
📊DB/MongoDB
ERROR Casepymongo.errors.OperationFailure: cannot add session into the cache, full error: {‘operationTime’: Timestamp(1714353661, 2), ‘ok’: 0.0, ‘errmsg’: ‘cannot add session into the cache’, ‘code’: 261, ‘codeName’: ‘TooManyLogicalSessions’, ‘$clusterTime’: {‘clusterTime’: Timestamp(1714353661, 2), ‘signature’: {‘hash’: b’\x81\xd5\x8f0[\x82\xcb{\xd8]\xd4\xba\x97\xc4\x0f+R \x88"’, ‘keyId’: 73174..
Cross-Origin Resource Sharing(CORS) 에러
·
카테고리 없음
Cross-Origin Resource Sharing(CORS) 에러🚧 CORS 란.CORS (코어스) 는 Cross-Origin-Resource Sharing의 줄임말. “서로 다른 사이트끼리 데이터를 주고 받는 걸 제어하는 웹 보안 규칙"쉽게 말해서, “다른 사이트에서는 함부로 내 데이터 보지마!” 라고 통제한다.📣 예시나는 지금 https://www.food-order.com 라는 사이트(프론트), 주문 정보를 https://api.food-system.com 라는 다른 주소(API 서버)에 요청.이렇게 주소가 다르면 “다른 출처(Origin)”이라고 말한다.그래서 서버는 반드시 브라우저에게 이렇게 허락을 해줘야 한다.Access-Control-Allow-Origin: https://www.fo..