Installation on Linux

Requirements

yum -y update
yum -y install readline readline-devel
# or
apt-get -y update
apt-get -y install readline readline-devel

Installation

# 1. Download Source File using wget cmd
wget <https://ftp.postgresql.org/pub/source/v15.3/postgresql-15.3.tar.gz>
# 2. Compile
cd postgresql-15.3
./configure \\
--prefix=/install/path \\
--enable-thread-safety \\
--enable-depend \\
--enable-nls=ko \\
--with-openssl \\
--with-python

Initialization and Basic Settings