일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- bind9
- 모리셔스 카셀라
- 모리셔스리조트
- 모리셔스
- mauritius
- mauritius casela
- Sony A850
- Trou aux Biches
- 트루오비쉬
- postgresql 비밀번호 변경
- 경주 여행
- 독일여행
- duabi
- 서울 야경
- cloud foundry
- 모리셔스 카젤라
- 프랑크푸르트 여행
- openstack
- Melbourne 여행
- r
- 모리셔스 여행
- 서울야경
- 모리셔스여행
- 느낌 사진
- 톰캣 서비스 등록
- postgresql 비밀번호 초기화
- 두바이여행
- postgresql 설치
- 경주
- 두바이
- Today
- Total
I.K.Picture & IT Info.
[CentOS 8] PostgreSQL / PostGIS 설치 (14 버전) 본문
[CentOS 8] PostgreSQL / PostGIS 설치 (14 버전)
helpful-intruder 2022. 10. 20. 02:06일단, postgresql을 설치하기 전 만약 CentOS 에서 dnf 설치가 되지 않는다면 아래 형태로(Stream 버전으로) 수정될 필요가 있다.
(Error: Failed to download metadata for repo 'appstream': Cannot prepare internal mirrorlist: No URLs in mirrorlist)
---------------------------------
$sudo sed -i -e "s|mirrorlist=|#mirrorlist=|g" /etc/yum.repos.d/CentOS-*
$sudo sed -i -e "s|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g" /etc/yum.repos.d/CentOS-*
$sudo dnf install centos-release-stream -y
$sudo dnf swap centos-{linux,stream}-repos -y
$sudo dnf distro-sync -y
---------------------------------
해당 포스팅에서는 PostgreSQL 14와 PostGIS33 버전을 설치합니다.
$sudo dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm
$sudo dnf -qy module disable postgresql
$sudo dnf makecache
$sudo dnf config-manager --set-enabled powertools
$sudo dnf install -y postgresql14-server
$sudo /usr/pgsql-14/bin/postgresql-14-setup initdb
이후 postgresql 비밀번호를 변경해줘야되는데 리눅스의 경우 Windows와 다르게 비밀번호가 설정되어 있지 않습니다.
그러므로 비밀번호를 postgres 계정으로 접속하여 변경 해줘야합니다.
이는 제 블로그 별도 포스팅을 하였습니다.
2020.07.08 - [Development/Database] - [PostgreSQL] 비밀번호 초기화 및 변경
외부 접속을 위해서는 아래 설정을 추가 및 변경해주면됩니다.
외부 접근 허용 (이 때는 root 권한으로 접근하시기 바랍니다)
#vi /var/lib/pgsql/14/data/pg_hba.conf
local all all peer
# IPv4 local connections:
host all all 127.0.0.1/32 scram-sha-256
# IPv6 local connections:
host all all ::1/128 scram-sha-256
# Allow replication connections from localhost, by a user with the
# replication privilege.
local replication all peer
host replication all 127.0.0.1/32 scram-sha-256
host replication all ::1/128 scram-sha-256
host all all 192.168.1.0/24 scram-sha-256
host all all 192.168.10.0/24 scram-sha-256
host all all 172.16.6.0/24 scram-sha-256
host all all 0.0.0.0/0 scram-sha-256
특정 ip만 허용하려면 위 192 또는 172와 같은 형태, 모든 IP를 허용하려면 0.0.0.0/0 으로 추가하면됩니다.
#vi /var/lib/pgsql/14/data/postgresql.conf
-------------------------------------------------------------------
#listen_addresses = 'localhost' # what IP address(es) to listen on;
listen_addresses = '*' # what IP address(es) to listen on;
-------------------------------------------------------------------
localhost 를 * 로 변경해줍니다.
$sudo service postgresql-14 restart
'Desktop and Mobile > Linux' 카테고리의 다른 글
Server CUI 화면 계속 켜놓기 (0) | 2022.12.27 |
---|---|
max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144] (0) | 2022.12.05 |
[CentOS 8] Tomcat 설치 후 서비스 등록 (dnf No URLs in mirrorlist) (0) | 2022.10.20 |
리눅스 프로세스 확인 및 강제 종료 (0) | 2021.10.04 |
Google Chrome Remote Desktop Ubuntu 설치 (0) | 2021.07.29 |