일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- docker
- zabbix
- Elk
- GNOME
- Chrome
- K8S
- Elasticsearch
- 빅데이터
- yum
- rsyslog
- PostgreSQL
- JSON
- audit
- 서울시민카드
- C
- 크롬
- log
- Kubernetes
- syslog
- bash
- Linux
- centos 7.5
- Python
- 파이썬
- Shell
- 디렉토리
- RHEL
- CentOS
- GPU
- Audit Log
- Today
- Total
목록PostgreSQL (3)
Sysops Notepad
설치환경 : - Centos 7 설치방법 [root@sysops]# yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm [root@sysops]# yum install -y postgresql13-server [root@sysops]# /usr/pgsql-13/bin/postgresql-13-setup initdb [root@sysops]# systemctl enable postgresql-13 사용방법 [root@sysops]# sudo -iu postgres psql # CREATE DATABASE test; # \c test # CREATE T..
처음 postgresql 구성간 아래와 같은 에러 메세지가 나올 경우....psycopg2.OperationalError: FATAL: Ident authentication failed for user "test".... psql: FATAL: Peer authentication failed for user "test" [root] # vi /var/lib/pgsql/10/data/pg_hba.conf 위 경로 들어가 상황에 맞게 METHOD 부분의 ident를 MD5 or trust로 변경해 준다. # IPv4 local connections:host all all 127.0.0.1/32 md5 [root] # systemctl restart postgresql-10 접속 성공~
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 postgre..