postgres3 [pg16] 백업 쉘 만들어서 자동 백업되게 설정하기 pg_dump를 사용하여 postgres 유저에서 자동으로 백업이 수행되게 설정하는 방법입니다.백업은 5일만 보관하며 5일이 지난 백업은 삭제하는 로직이 추가되어 있습니다. 1) 백업용 디렉토리 만들기실제 백업파일이 저장되는 backupfile, 로그가 저장되는 log , 쉘이 저장되는 shell을 생성합니다mkdir -p /pgdata/backup/backup/backupfilemkdir -p /pgdata/backup/backup/logmkdir -p /pgdata/backup/backup/shelldrwxr-xr-x. 2 postgres postgres 94 Jul 31 10:04 backupfiledrwxr-xr-x. 2 postgres postgres 67 Jul 31 10:03 logdrwxr.. 2024. 7. 31. postgres extention contrib 확장팩 설치 extention을 설치하려고 보니 에러가 발생해서 몇시간의 삽질 끝에... 찾아내서 공유드립니다. 우선 저는 yum으로 pg를 설치하였고, 버전은 15.5 입니다. 최초 에러. postgres=# CREATE EXTENSION pageinspect ; ERROR: extension "pageinspect" is not available DETAIL: Could not open extension control file "/usr/pgsql-15/share/extens/pageinspect.control": No such file or directory. HINT: The extension must first be installed on the system where PostgreSQs running. 해.. 2024. 3. 30. DB 설치 후 client tool과 외부 연결하기 테스트용 DB를 설치 후(DB version 9.2) 디비버나 pgamin 같은 Client Tool로 접속하기 위해서 여러가지 시도해보고 성공하였습니다. 그걸 정리해보도록 하겠습니다. 우선 DB 설치는 yum install로 기본 설치로 진행하였습니다. DB 설치는 여기를 참고하세요. 저는 최신버전을 다운받으려고 했으나, 빠른 테스트를 위해서 그냥 예전버전인 9.2버전으로 설치했습니다. 1) YUM install [root@ysbae ~]# yum install -y postgresql Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-manager This system is not registered with .. 2023. 11. 22. 이전 1 다음