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 |
29 | 30 | 31 |
Tags
- log
- Audit Log
- Elasticsearch
- CentOS
- GNOME
- 파이썬
- Shell
- Python
- K8S
- 크롬
- 디렉토리
- JSON
- PostgreSQL
- 빅데이터
- zabbix
- audit
- bash
- GPU
- Chrome
- RHEL
- syslog
- Elk
- yum
- rsyslog
- Kubernetes
- centos 7.5
- 서울시민카드
- C
- Linux
- docker
Archives
- Today
- Total
Sysops Notepad
Centos 7 Postgresql 10 설치 및 DB 생성 본문
728x90
1. 레포 추가
rpm -Uvh https://yum.postgresql.org/10/redhat/rhel-7-x86_64/pgdg-centos10-10-2.noarch.rpm
2. 설치
yum install -y postgresql10-server postgresql10
3. DB 초기화
/usr/pgsql-10/bin/postgresql-10-setup initdb
Initializing database ... OK
4. systemctl start postgresql-10
5. systemctl enable postgresql-10
6. su - postgres
7. psql
8. DB 생성 및 계정 생성
postgres=# CREATE DATABASE mydb; CREATE DATABASE
postgres=# CREATE USER test WITH PASSWORD 'password1'; CREATE ROLE
postgres=# ALTER ROLE test SET client_encoding TO 'utf8'; ALTER ROLE
postgres=# ALTER ROLE test SET default_transaction_isolation TO 'read committed'; ALTER ROLE
postgres=# ALTER ROLE test SET timezone TO 'UTC-9'; ALTER ROLE
postgres=# GRANT ALL PRIVILEGES ON DATABASE mydb TO test; GRANT
728x90
'업무 > sys' 카테고리의 다른 글
Centos 7 GUI 설치 (0) | 2018.09.29 |
---|---|
Centos 7 postgresql 접속 오류시 조치 방법 (0) | 2018.07.08 |
Centos 7 Audit Log 확인하기 (0) | 2018.06.13 |
Docker proxy 설정 방법 (0) | 2018.06.06 |
Centos 7 logrotate를 사용한 로그 관리 하기 (0) | 2018.06.06 |
Comments