본문 바로가기

다른 DBMS99

Oracle MySQL Connectors C++ and ODBC (January 2024 CPU) 관련 내용 및 패치하기 운영하는 DB에 아래와 같은 취약점 점검 메세지로 나왔습니다.관련된 내용에 대한 정리와 패치방법에 대해서 알아보겠습니다. 해당 내용은 2024년 1월의 Oracle Critical Patch Update Advisory 에서 나온 내용입니다. 특정 버전 이하의 관련 프로그램을 사용하면 위험하니 업데이트하라는 내용입니다. mysql의 버전은 8.0.36입니다.  rpm 파일들의 버전입니다.# rpm -qa |grep mysqlphp-mysqlnd-7.2.24-1.module+el8.2.0+4601+7c76a223.x86_64mysql-8.0.36-1.module+el8.9.0+21207+6c20cb3d.x86_64mysql-connector-odbc-8.0.33-1.el8.x86_64mysql-common.. 2024. 4. 30.
[server_errno=4052] Error reading packet from server: A slave with the same server_uuid/server_id as this slave has connected to the master 에러 메세지 아래의 에러메세지가 replication 환경의 slave 서버쪽에서 실시간으로 쌓이고 있었습니다. [ERROR] Error reading packet from server: A slave with the same server_uuid/server_id as this slave has connected to the master; the first event 'binlog.000011' at 54049840, the last event read from 'binlog.000011' at 256, the last byte read from 'binlog.000011' at 54049840. (server_errno=4052) 아래는 mariadb 사이트의 에러 번호 설명입니다. 이 슬레이브와 동.. 2024. 4. 22.
[MariaDB] EOS 날짜 (2024.04.08 기준) MariaDB Community Version은 Free이며 해당 제품을 기반으로 작성하였습니다. Stable Date는 해당버전의 안정화된 버전의 출시날짜이고, 유지보수 지원기간은 일반적으로 5년입니다. LTS버전의 경우 더 늘어날 수 있습니다. 현재 MariaDB의 Long Term Support(LTS)는 10.6과 10.11입니다. 이전버전의 LTS는 5.5였습니다. 출처는 mariadb의 사이트에서 정보를 가져와 정리하였습니다. 출처 : https://mariadb.org/about/#maintenance-policy (사이트에서는 EOS날짜가 월까지만 나와있는 경우 일자는 1일로 설정하였습니다.) Products Name Stable Date(GA) End Of Life MariaDB 5.1 .. 2024. 4. 8.
[postgresql] 데이터타입 총정리 postgresql은 정말 다양한 데이터타입이 있습니다. 오라클과 다르게 종류가 훨씬 많더라구요.. 실제로 정리해보고 생성하는것까지 정리하도록 하겠습니다. 출처 : https://www.postgresql.org/docs/current/datatype.html 1.Numeric 숫자유형입니다. 2byte 정수, 4byte 정수, 8byte 정수, 4 or 8 byte 부동 소수점 숫자. 선택가능한 정밀 소수점으로 구성되어 있습니다. Name 사이즈 설명 값의 범위 smallint 2 bytes small-range integer 작은 범위의 정수 -32768 to +32767 integer 4 bytes typical choice for integer 일반적인 정수 -2147483648 to +21474.. 2024. 4. 2.