인디노트

PostgreSQL 10 on CentOS6 본문

개발 플랫폼 및 언어

PostgreSQL 10 on CentOS6

인디개발자 2018. 3. 2. 09:04

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