반응형
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 |
Tags
- Argo
- CANARY
- tekton
- MLflow
- xdp
- serving
- Kubernetes
- seldon core
- nginx ingress
- mlops
- 카오스 엔지니어링
- CI/CD
- Kubernetes 인증
- kubernetes operator
- operator
- Model Serving
- opensearch
- opentelemetry
- knative
- Kubeflow
- argocd
- Continuous Deployment
- Kopf
- gitops
- 오퍼레이터
- eBPF
- Pulumi
- blue/green
- keda
- Litmus
Archives
- Today
- Total
Kubernetes 이야기
CentOS8 Postgres 12 설치 본문
반응형

설치
repo 등록
dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm
dnf -qy module disable postgresql
설치
dnf install -y postgresql12-server
init
# /usr/pgsql-12/bin/postgresql-12-setup initdb
Initializing database ... OK
enable
systemctl enable postgresql-12
start
systemctl start postgresql-12
psql
# su - postgres
$ psql
psql (12.12)
Type "help" for help.
postgres=#
반응형