0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Postgresqlインストール

Last updated at Posted at 2018-10-21
yum install gcc readline-devel zlib-devel
cd /usr/local/src/
wget https://ftp.postgresql.org/pub/source/v9.6.2/postgresql-9.6.2.tar.gz
tar zxvf postgresql-9.6.2.tar.gz 
cd postgresql-9.6.2/
./configure --prefix=/opt/postgresql/9.6.2
make
make install

groupadd postgres
useradd -g postgres postgres
passwd postgres
su postgres
/opt/postgresql/9.6.2/bin/initdb --no-locale -D /home/postgres/data

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?