JH 개인 블로그
close
프로필 배경
프로필 로고

JH 개인 블로그

  • All (141)
    • Cloud (18)
      • AWS(Amazon Web Service) (4)
      • NCP(Naver Cloud Platform) (8)
      • OCI(Oracle Cloud Infrastruc.. (6)
    • DataBase (78)
      • Oracle (14)
      • MySQL & MariaDB (43)
      • PostgreSQL (8)
      • MSSQL (13)
    • DataBase Admin (14)
      • DB Admin (8)
      • Trouble shooting (6)
    • Others (31)
      • DB Monitoring (15)
      • Opensource Tool (16)
    • 여가 생활 (0)
      • 해외 여행 (0)
      • 맛집 탐방 (0)
      • 호캉스 (0)
  • 홈
  • 태그
  • 방명록
[Oracle - RESTART 19c install] part 2

[Oracle - RESTART 19c install] part 2

part1편에 이어 계속 하겠습니다. 글이 너무 길어지면 관리하기도 힘들고 보기도 힘들더라구요..그래서 나눠서 했습니다. 사전 구성 해당 포스팅을 보시기 전에 part1부터 진행해주시면 될거 같습니다. https://jhdatabase.tistory.com/17 [Oracle - RESTART 19c install] part 1 사전 구성 ##버전 확인 (버전과 os 플랫폼마다 필요한 rpm 패키지가 다르기때문에 RESTART 문서 참고해서 필요 패키지 설치) [root@jh ~]# uname -a Linux localhost.localdomain 3.10.0-862.el7.x86_64 #1 SMP W.. jhdatabase.tistory.com 테스트 시작 ■ grid 설치 # su - grid # c..

  • format_list_bulleted DataBase/Oracle
  • · 2022. 1. 22.
  • textsms
[Oracle - RESTART 19c install] part 1

[Oracle - RESTART 19c install] part 1

사전 구성 ■ 버전 확인 (버전과 os 플랫폼마다 필요한 rpm 패키지가 다르기때문에 RESTART 문서 참고해서 필요 패키지 설치) [root@jh ~]# uname -a Linux localhost.localdomain 3.10.0-862.el7.x86_64 #1 SMP Wed Mar 21 18:14:51 EDT 2018 x86_64 x86_64 x86_64 GNU/Linux 테스트 시작 ■ Group , User 생성 [root@jh ~]# groupadd dba [root@jh ~]# useradd -g dba oracle [root@jh ~]# useradd -g dba grid [root@jh ~]# mkdir /oracle /grid [root@jh ~]# chown oracle.dba /o..

  • format_list_bulleted DataBase/Oracle
  • · 2022. 1. 22.
  • textsms
[Oracle - Client password  version에러] ORA-28040

[Oracle - Client password version에러] ORA-28040

ORA-28040 ■ 가끔 아래와 같은 ORA-28040 에러를 마주친다. ■ 해당 user의 password_version을 보면 10G 11G버전이다. SQL> set linesize 200 SQL> col username for a25 SQL> select username,password_versions from dba_users where account_status='OPEN'; USERNAME PASSWORD_VERSIONS ------------------------- ----------------- SYS 11G 12C SYSTEM 11G 12C AA 11G 12C PDBADMIN 11G 12C B 11G 12C USER2 11G 12C HR 11G 12C TEST3 11G 12C A 11G..

  • format_list_bulleted DataBase/Oracle
  • · 2022. 1. 22.
  • textsms
[MSSQL - SQL Server2019 install]

[MSSQL - SQL Server2019 install]

Oracle cloud 에서 일반 instance 생성 후 MSSQL 설치를 진행하겠습니다. 사전 구성 os 정보는 아래 사진에 나온대로 Windows server 2016입니다. 테스트 환경 ■ 인스턴스 생성 & 구성 정보 ■ 초기 비밀번호 입력 및 새로운 비밀번호 입력 OCI에서 window서버는 초기 비밀번호를 제공합니다. opc 유저로 접속하면 되고 처음 접속해서 비밀번호를 바꾸면 됩니다! ■ 설치파일이 한국어용 설치팩이기 때문에 언어를 한국어로 설정 설정 -> Region & lanuage에서 한국어 options에서 download 후 set as default로 기본 설정 ■ 사용자 추가 제어판 -> 사용자 계정 ■ 사용자 계정 -> 다른 계정 관리 -> 사용자 계정 추가 ■ USER 권한 ..

  • format_list_bulleted DataBase/MSSQL
  • · 2022. 1. 22.
  • textsms
[PostgreSQL - Repmgr 구성 & Failover test] part 1

[PostgreSQL - Repmgr 구성 & Failover test] part 1

이번엔엔 postgresql의 db서버들을 고가용성 구성을 해볼까 합니다. DB server 3대와 witness 서버를 repmgr로 이중화를 시킨뒤, 윗단에 proxy server를 두어 connection pool과 로드밸런싱 기능으로 구성할 생각입니다. 이번 글에선 repmgr을 이용하여 DB서버를 이중화 하려고 합니다. 전체적인 구성은 아래 사진과 같습니다. 테스트 환경 IP Version Primary 172.40.40.64 PostgreSQL 12.3 Replica1 172.40.40.65 PostgreSQL 12.3 Replica2 172.40.40.66 PostgreSQL 12.3 witness 172.40.40.67 사전 준비 ■ 편의를 위해 Alias 추가 (모든 노드) [postgr..

  • format_list_bulleted DataBase/PostgreSQL
  • · 2022. 1. 20.
  • textsms
[PostgreSQL - 12.3 install]

[PostgreSQL - 12.3 install]

Yum 이용 설치 [root@localhost ~]# sudo yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm [root@localhost ~]# sudo yum install -y postgresql12-server sudo /usr/pgsql-12/bin/postgresql-12-setup initdb [root@localhost ~]# sudo systemctl enable postgresql-12 [root@localhost ~]# sudo systemctl start postgresql-12 Compile 이용 설치 ■ 다음의 3개 패키..

  • format_list_bulleted DataBase/PostgreSQL
  • · 2022. 1. 20.
  • textsms
[MariaDB 10.1 to 10.2  Upgrade]

[MariaDB 10.1 to 10.2 Upgrade]

본 포스팅에선 mariadb 10.1 -> mariadb 10.2로 upgrade 내용을 게시하도록 하겠습니다! 사전 확인 MariaDB [(none)]> select @@version; +-----------------+ | @@version | +-----------------+ | 10.1.45-MariaDB | +-----------------+ 1 row in set (0.00 sec) MariaDB [(none)]> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | kim | | mysql | | performance_schema | | sakila | | test ..

  • format_list_bulleted DataBase/MySQL & MariaDB
  • · 2022. 1. 14.
  • textsms
[MySQL 5.7 binary install]

[MySQL 5.7 binary install]

파일 다운로드 ■ 해당 경로에서 version과 OS에 맞게 download받은 파일을 서버에 전송 다운로드 경로 https://downloads.mysql.com/archives/community/ MySQL :: Download MySQL Community Server (Archived Versions) Please note that these are old versions. New releases will have recent bug fixes and features! To download the latest release of MySQL Community Server, please visit MySQL Downloads. MySQL open source software is provided und..

  • format_list_bulleted DataBase/MySQL & MariaDB
  • · 2022. 1. 14.
  • textsms
  • navigate_before
  • 1
  • ···
  • 5
  • 6
  • 7
  • 8
  • navigate_next
전체 카테고리
  • All (141)
    • Cloud (18)
      • AWS(Amazon Web Service) (4)
      • NCP(Naver Cloud Platform) (8)
      • OCI(Oracle Cloud Infrastruc.. (6)
    • DataBase (78)
      • Oracle (14)
      • MySQL & MariaDB (43)
      • PostgreSQL (8)
      • MSSQL (13)
    • DataBase Admin (14)
      • DB Admin (8)
      • Trouble shooting (6)
    • Others (31)
      • DB Monitoring (15)
      • Opensource Tool (16)
    • 여가 생활 (0)
      • 해외 여행 (0)
      • 맛집 탐방 (0)
      • 호캉스 (0)
최근 글
인기 글
최근 댓글
태그
  • #oci
  • #oracle
  • #ncp
  • #mysql
  • #mssql
  • #mha
  • #navercloud
  • #MariaDB
  • #monitoring
  • #PostgreSQL
전체 방문자
오늘
어제
전체

티스토리툴바