일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 2FA
- otpkey
- albumbook
- MYSQL
- 애플
- kmip
- git
- 앱리소스
- 앨범북
- Nodejs
- Xcode
- OSX
- SWIFT
- OTP
- 앱스토어
- SwiftUI
- MFA
- WebAuthn
- SSH
- 안드로이드
- openssl
- FIDO2
- appres
- fido
- css
- 인증
- apple
- MSYS2
- Android
- SSL
Archives
- Today
- Total
인디노트
PostgreSQL 10 on CentOS6 본문
PostgreSQL 10 on CentOS6
yum install https://download.postgresql.org/pub/repos/yum/10/redhat/rhel-6-x86_64/pgdg-centos10-10-2.noarch.rpm
Install the client packages:
yum install postgresql10
Optionally install the server packages:
yum install postgresql10-server
Optionally initialize the database and enable automatic start:
service postgresql-10 initdb
chkconfig postgresql-10 on
service postgresql-10 start
/var/lib/pgsql/10/data/postgresql.conf
listen_addresses = '*'
/var/lib/pgsql/10/data/pg_hba.conf
host all all 0.0.0.0/0 md5
service postgresql-10 restart
반응형
'개발 플랫폼 및 언어' 카테고리의 다른 글
리눅스 하드디스크 용량 늘리기 (0) | 2018.03.06 |
---|---|
Samba(3.6.23) 서버 설정 for RHEL 6.5 (0) | 2018.03.06 |
PostgreSQL 초기 설정 및 접속 연습 (0) | 2018.02.28 |
BLFS Boot Scripts (0) | 2018.02.23 |
OpenLDAP 소개 (0) | 2018.02.23 |
Comments