Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- Node
- Redis
- 우분투
- node.js
- 접속자수
- ScrollBooster
- nginx
- API design
- 엔진엑스
- tbls
- MongoDB
- 스크롤부스터
- Stoplight
- PGSQL
- 18.04
- nodejs
- ubuntu
- db
- 리눅스
- NVM
- api 문서
- 데이터베이스
- 몽고DB
- php7
- Linux
- nosql
- php
- ulimit
- PostgreSQL
- JavaScript
Archives
- Today
- Total
목록PGSQL (2)
Parallel World
Postgresql ROLE 백업 및 복구
ROLE 백업 pg_dumpall -h localhost -p 5432 -U postgres -v --roles-only -f "/path/to/useraccts.sql" 테이블 스페이스가 포함된 모든 글로벌 백업 pg_dumpall -h localhost -p 5432 -U postgres -v --globals-only -f "/path/to/globals.sql" ROLE 복원 psql -h localhost -d postgres -U postgres -f "/path/to/useraccts.sql"
프로그래밍/Linux
2019. 10. 1. 19:23
Ubuntu 18.04 - Postgresql 설치
설치 환경 정보 Ubuntu 18.04.3LTS Postgresql 11.5 PostgreSQL Apt 저장소 추가 PostgreSQL 패키지 용 GPG 키 추가 $ sudo apt-get install wget ca-certificates $ wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - 저장소 추가 $ sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ `lsb_release -cs`-pgdg main" >> /etc/apt/sources.list.d/pgdg.list' PostgreSQL 설치 apt 업데이트 및 Postgre..
프로그래밍/Linux
2019. 9. 6. 16:51